Annotation of OpenXM/src/oxc/configure.in, Revision 1.2
1.2 ! takayama 1: dnl $OpenXM: OpenXM/src/oxc/configure.in,v 1.1 2000/10/13 06:05:11 ohara Exp $
1.1 ohara 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)
1.2 ! takayama 15: fi
! 16: AC_CHECK_FUNC(dlopen)
! 17: if test "$ac_cv_func_dlopen" = no ; then
! 18: AC_CHECK_LIB(dl,dlopen)
1.1 ohara 19: fi
20:
21: AC_OUTPUT(Makefile)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>