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

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

Revision 1.10, Mon Jun 28 12:39:11 2004 UTC (19 years, 10 months ago) by ohara
Branch: MAIN
CVS Tags: RELEASE_1_2_3
Changes since 1.9: +10 -9 lines

We imported automake/libtool technology to the ox_toolkit package.
Libtool-ja.txt is the working log. (written in Japanese)

REMARK:
A shared object "libox.so" will be installed to ${OpenXM_HOME}/lib.

dnl  $OpenXM: OpenXM/src/ox_toolkit/configure.in,v 1.10 2004/06/28 12:39:11 ohara Exp $
dnl  If you change this file, do not forget to run autoconf and rm .configure_done

AC_INIT(mysocket.c)
AC_PREREQ(2.53)
AM_INIT_AUTOMAKE(ox_toolkit, 20040628)
AM_MAINTAINER_MODE
AC_CANONICAL_SYSTEM
AC_PROG_CC
AC_PROG_INSTALL
AM_PROG_LIBTOOL
AC_PATH_XTRA

if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
    CFLAGS="${CFLAGS} -finline-functions"
fi

AC_ARG_WITH([gmp],
[  --with-gmp              with the GNU MP library [[no]]],
[with_gmp=yes],[with_gmp=no])

if test ${with_gmp:=no} != no ; then
    AC_DEFINE([WITH_GMP])
fi
AM_CONDITIONAL([USE_GMP],[test "$with_gmp" = yes])

case "${host}" in
[i[3-6]86-*-interix*])
    AC_DEFINE([_ALL_SOURCE])
    ;;
*)
    ;;
esac

dnl for Solaris 2.x
AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)])
AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)])
dnl for Redhat 8.0
AC_CHECK_FUNC(dlopen, , [AC_CHECK_LIB(dl,dlopen)])

AC_OUTPUT(Makefile)