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

Diff for /OpenXM/src/ox_toolkit/configure.in between version 1.9 and 1.10

version 1.9, 2004/02/28 23:39:38 version 1.10, 2004/06/28 12:39:11
Line 1 
Line 1 
 dnl  $OpenXM: OpenXM/src/ox_toolkit/configure.in,v 1.8 2004/02/28 16:54:55 ohara Exp $  dnl  $OpenXM: OpenXM/src/ox_toolkit/configure.in,v 1.9 2004/02/28 23:39:38 ohara Exp $
 dnl  If you change this file, do not forget to run autoconf and rm .configure_done  dnl  If you change this file, do not forget to run autoconf and rm .configure_done
   
   
 AC_INIT(mysocket.c)  AC_INIT(mysocket.c)
   AC_PREREQ(2.53)
   AM_INIT_AUTOMAKE(ox_toolkit, 20040628)
   AM_MAINTAINER_MODE
 AC_CANONICAL_SYSTEM  AC_CANONICAL_SYSTEM
 dnl AC_CANONICAL_HOST  
 AC_PROG_CC  AC_PROG_CC
 AC_PROG_INSTALL  AC_PROG_INSTALL
 AC_PROG_RANLIB  AM_PROG_LIBTOOL
 dnl AC_PROG_LN_S  
 AC_PATH_XTRA  AC_PATH_XTRA
   
   if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
       CFLAGS="${CFLAGS} -finline-functions"
   fi
   
 AC_ARG_WITH([gmp],  AC_ARG_WITH([gmp],
 [  --with-gmp              with the GNU MP library [[no]]],  [  --with-gmp              with the GNU MP library [[no]]],
 [with_gmp=yes],[with_gmp=no])  [with_gmp=yes],[with_gmp=no])
   
 if test ${with_gmp:=no} != no ; then  if test ${with_gmp:=no} != no ; then
     AC_DEFINE([WITH_GMP])      AC_DEFINE([WITH_GMP])
     GMPLIB="-lgmp"  
     USE_GMP='#'  
 fi  fi
 AC_SUBST([GMPLIB])  AM_CONDITIONAL([USE_GMP],[test "$with_gmp" = yes])
 AC_SUBST([USE_GMP])  
   
 case "${host}" in  case "${host}" in
 [i[3-6]86-*-interix*])  [i[3-6]86-*-interix*])

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>