Annotation of OpenXM/src/ox_math/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(math2ox.c)
! 5: AC_PROG_CC
! 6: AC_PROG_LN_S
! 7: AC_PROG_RANLIB
! 8: AC_PROG_INSTALL
! 9: AC_PATH_XTRA
! 10:
! 11: AC_CHECK_FUNC(socket)
! 12: if test "$ac_cv_func_socket" = no ; then
! 13: AC_CHECK_LIB(socket,socket)
! 14: fi
! 15: AC_CHECK_FUNC(gethostbyname)
! 16: if test "$ac_cv_func_gethostbyname" = no ; then
! 17: AC_CHECK_LIB(nsl,gethostbyname)
! 18: fi
! 19:
! 20: AC_CANONICAL_HOST
! 21: case "$host_os" in
! 22: linux*|freebsd*)
! 23: ml_system=Linux
! 24: ;;
! 25: osf)
! 26: ml_system=DEC-AXP
! 27: ;;
! 28: solaris2*)
! 29: ml_system=Solaris
! 30: ;;
! 31: *)
! 32: ;;
! 33: esac
! 34: AC_SUBST(ml_system)
! 35:
! 36: AC_OUTPUT(Makefile)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>