[BACK]Return to configure.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / kxx

File: [local] / OpenXM / src / kxx / configure.in (download)

Revision 1.1, Tue Feb 1 09:59:43 2000 UTC (24 years, 3 months ago) by takayama
Branch: MAIN

OpenXM/kxx starts to use autoconf.
After updating, run ./make-configure in the directory src/kxx or
type in "make configure-kxx" in the directory src.

dnl  $OpenXM: OpenXM/src/kxx/configure.in,v 1.1 2000/02/01 09:59:43 takayama Exp $
dnl  If you change this file, do not forget to run autoconf and rm .configure_done


AC_INIT(oxmain.c)
AC_PROG_CC
AC_PROG_RANLIB

AC_CHECK_FUNC(socket)
if test "$ac_cv_func_socket" = no ; then
  AC_CHECK_LIB(socket,socket)
fi

AC_OUTPUT(Makefile)