Diff for /rpl/configure.ac between versions 1.61 and 1.79

version 1.61, 2013/03/19 13:14:44 version 1.79, 2013/10/05 18:31:31
Line 1 Line 1
 dnl Process this file with autoconf to produce a configure script.  dnl Process this file with autoconf to produce a configure script.
 AC_INIT([rpl],[4.1.13])  AC_INIT([rpl],[4.1.16])
 AC_CANONICAL_TARGET  AC_CANONICAL_TARGET
 AC_CANONICAL_TARGET  AC_CANONICAL_TARGET
 AM_INIT_AUTOMAKE(silent-rules)  AM_INIT_AUTOMAKE(silent-rules)
Line 11  dnl Libraries Line 11  dnl Libraries
 NCURSES=ncurses-5.9  NCURSES=ncurses-5.9
 READLINE=readline-6.2  READLINE=readline-6.2
 UNITS=units-2.01  UNITS=units-2.01
 GSL=gsl-1.15  GSL=gsl-1.16
 GPP=gpp-3.0  GPP=gpp-3.0
 GNUPLOT=gnuplot-4.6.2  GNUPLOT=gnuplot-4.6.3
 FILE=file-5.11  FILE=file-5.11
 ICONV=libiconv-1.14  ICONV=libiconv-1.14
 SQLITE=sqlite-3.7.16  SQLITE=sqlite-3.8.0.2
 OPENSSL=openssl-1.0.1e  OPENSSL=openssl-1.0.1e
 OPENMOTIF=openmotif-2.3.4  OPENMOTIF=openmotif-2.3.4
 LIBXPM=libXpm-3.5.9  LIBXPM=libXpm-3.5.9
 SIGSEGV=libsigsegv-2.11  SIGSEGV=libsigsegv-2.11
   ZLIB=zlib-1.2.7
   
 GMP=gmp-5.1.1  GMP=gmp-5.1.2
 MPFR=mpfr-3.1.1  MPFR=mpfr-3.1.2
 NTL=ntl-5.5.2  NTL=ntl-5.5.2
 COCOA=CoCoALib-0.9950  COCOA=CoCoALib-0.9950
 PARI=pari-2.5.1  PARI=pari-2.5.4
 GIAC=giac-1.1.0  GIAC=giac-1.1.0
   
 dnl 32 bits ABI  dnl 32 bits ABI
Line 249  else Line 250  else
 fi],  fi],
 REG=$LDFLAGS  REG=$LDFLAGS
 POSIX_IPCS=guessed  POSIX_IPCS=guessed
 LDFLAGS=-lrt  LDFLAGS="-lrt -lpthread"
 [AC_MSG_CHECKING([for POSIX semaphores and shared objects])  [AC_MSG_CHECKING([for POSIX semaphores and shared objects])
 AC_LINK_IFELSE(  AC_LINK_IFELSE(
 [AC_LANG_PROGRAM([#include <sys/mman.h>  [AC_LANG_PROGRAM([#include <sys/mman.h>
Line 500  if test ! -d tools/$OPENSSL; then Line 501  if test ! -d tools/$OPENSSL; then
     gunzip -c "$srcdir"/tools/$OPENSSL.tar.gz | \      gunzip -c "$srcdir"/tools/$OPENSSL.tar.gz | \
             (cd tools && tar -xf -)              (cd tools && tar -xf -)
 fi  fi
   if test ! -d tools/$ZLIB; then
       gunzip -c "$srcdir"/tools/$ZLIB.tar.gz | \
               (cd tools && tar -xf - && cd $ZLIB && ./configure --static)
   fi
 if test ! -d rplcas; then  if test ! -d rplcas; then
     mkdir rplcas      mkdir rplcas
 fi  fi
Line 707  dnl Do we need to use -lrt? Line 712  dnl Do we need to use -lrt?
 AC_CHECK_LIB(rt, nanosleep, LIBS="$LIBS -lrt",  AC_CHECK_LIB(rt, nanosleep, LIBS="$LIBS -lrt",
         AC_MSG_WARN([librt doesn't seem to be needed on this system.]))          AC_MSG_WARN([librt doesn't seem to be needed on this system.]))
   
   AC_CHECK_LIB(rt, shm_open, LIBS="$LIBS -lrt",
           AC_MSG_WARN([librt doesn't seem to be needed on this system.]))
   
   AC_CHECK_LIB(pthread, pthread_create, LIBS="$LIBS -lpthread",
           AC_MSG_WARN([libpthread doesn't seem to be needed on this system.]))
   
 dnl Do we need to use -lsocket?  dnl Do we need to use -lsocket?
 AC_CHECK_LIB(socket, bind, LIBS="$LIBS -lsocket",  AC_CHECK_LIB(socket, bind, LIBS="$LIBS -lsocket",
         AC_MSG_WARN([libsocket doesn't seem to be needed on this system.]))          AC_MSG_WARN([libsocket doesn't seem to be needed on this system.]))
Line 1309  case $HOST in Line 1320  case $HOST in
     break;;      break;;
   
     *)      *)
         ARCH=unknown          ARCH=$(echo $HOST | cut -f1 -d-)
     break ;;      break ;;
 esac  esac
   
Line 1356  AC_SUBST(PARI) Line 1367  AC_SUBST(PARI)
 AC_SUBST(GIAC)  AC_SUBST(GIAC)
 AC_SUBST(INCMOTIF)  AC_SUBST(INCMOTIF)
 AC_SUBST(LIBMOTIF)  AC_SUBST(LIBMOTIF)
   AC_SUBST(ZLIB)
   
 AC_SUBST(CFLAGS)  AC_SUBST(CFLAGS)
 AC_SUBST(CXXFLAGS)  AC_SUBST(CXXFLAGS)
Line 1381  if test $RECURSIVE = yes; then Line 1393  if test $RECURSIVE = yes; then
     AC_CONFIG_SUBDIRS(tools/$SIGSEGV)      AC_CONFIG_SUBDIRS(tools/$SIGSEGV)
 fi  fi
   
 if test x$MYSQL_LIB = x"yes" -o x$POSTGRESQL_LIB = x"yes"; then  
     ZLIB=-lz  
 else  
     ZLIB=  
 fi  
   
 AC_SUBST(ZLIB)  
   
 AC_CONFIG_FILES(Makefile)  AC_CONFIG_FILES(Makefile)
 AC_CONFIG_FILES(HEADER)  AC_CONFIG_FILES(HEADER)
 AC_CONFIG_FILES(tools/Makefile)  AC_CONFIG_FILES(tools/Makefile)

Removed from v.1.61  
changed lines
  Added in v.1.79


CVSweb interface <joel.bertrand@systella.fr>