Annotation of OpenXM/src/oxc/configure.in, Revision 1.1
1.1 ! ohara 1: dnl $OpenXM$
! 2: dnl If you change this file, do not forget to run autoconf and rm .configure_done
! 3:
! 4: AC_INIT(oxc.c)
! 5: AC_PROG_CC
! 6: AC_PATH_XTRA
! 7:
! 8: AC_CHECK_FUNC(socket)
! 9: if test "$ac_cv_func_socket" = no ; then
! 10: AC_CHECK_LIB(socket,socket)
! 11: fi
! 12: AC_CHECK_FUNC(gethostbyname)
! 13: if test "$ac_cv_func_gethostbyname" = no ; then
! 14: AC_CHECK_LIB(nsl,gethostbyname)
! 15: fi
! 16:
! 17: AC_OUTPUT(Makefile)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>