Annotation of OpenXM/src/kan96xx/plugin/configure.in, Revision 1.2
1.2 ! takayama 1: dnl $OpenXM: OpenXM/src/kan96xx/plugin/configure.in,v 1.1 2003/09/02 03:24:50 takayama Exp $
1.1 takayama 2: dnl If you change this file, do not forget to run autoconf and rm .configure_done
3:
4:
5: AC_INIT(file2.c)
6: AC_PROG_CC
7: AC_PROG_RANLIB
8:
9: AC_CHECK_FUNC(socket)
10: if test "$ac_cv_func_socket" = no ; then
11: AC_CHECK_LIB(socket,socket)
12: fi
13: AC_CHECK_FUNC(gethostbyname)
14: if test "$ac_cv_func_gethostbyname" = no ; then
15: AC_CHECK_LIB(nsl,gethostbyname)
16: fi
17:
1.2 ! takayama 18: AC_CHECK_HEADER(sys/appleapiopts.h,AC_SUBST(CFLAG2,[" -arch ppc -arch i386"]),AC_SUBST(CFLAG2,[" "]))
! 19:
1.1 takayama 20:
21: AC_OUTPUT(Makefile)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>