Diff for /rpl/configure.ac between versions 1.8 and 1.283

version 1.8, 2011/11/15 07:01:35 version 1.283, 2023/08/05 21:37:00
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.4])  AC_INIT([rpl],[4.1.34])
 AC_CANONICAL_TARGET  
 AC_CANONICAL_TARGET  AC_CANONICAL_TARGET
 AM_INIT_AUTOMAKE(silent-rules)  AM_INIT_AUTOMAKE(silent-rules)
 AM_SILENT_RULES  AM_SILENT_RULES([yes])
 AC_SUBST(target_cpu)  AC_SUBST(target_cpu)
 AC_CONFIG_HEADERS([rplconfig.h])  AC_CONFIG_HEADERS([rplconfig.h])
   
 dnl Libraries  dnl Libraries
 NCURSES=ncurses-5.9  NCURSES=ncurses-6.4
 READLINE=readline-6.2  READLINE=readline-8.2
 UNITS=units-1.88  UNITS=units-2.22
 GSL=gsl-1.15  GSL=gsl-2.7.1
 GPP=gpp-3.0  GPP=gpp-3.0
 GNUPLOT=gnuplot-4.4.3  GNUPLOT=gnuplot-5.4.8
 FILE=file-5.03  dnl ftp://ftp.astron.com/pub/file/
 ICONV=libiconv-1.13.1  FILE=file-5.45
 SQLITE=sqlite-3.7.8  ICONV=libiconv-1.17
 OPENSSL=openssl-1.0.0e  SQLITE=sqlite-3.42.0
 OPENMOTIF=openmotif-2.3.3  OPENSSL=openssl-3.1.2
 LIBXPM=libXpm-3.5.9  OPENMOTIF=motif-2.3.8
 SIGSEGV=libsigsegv-2.6  LIBXPM=libXpm-3.5.16
   SIGSEGV=libsigsegv-2.14
 GMP=gmp-5.0.2  ZLIB=zlib-1.2.11 // à mettre à jour
 MPFR=mpfr-3.0.1  
 NTL=ntl-5.5.2  GMP=gmp-6.2.1
 COCOA=CoCoALib-0.9943  MPFR=mpfr-4.1.0
 PARI=pari-2.5.0  MPFI=mpfi-1.5.4
 GIAC=giac-0.9.3  NTL=ntl-11.5.1
   PARI=pari-2.13.3
   GIAC=giac-1.9.0
   
   dnl 32 bits ABI
   AC_ARG_WITH(gcc_version,
   [  --with-gcc-version      force gcc version],[
   CC=gcc-$with_gcc_version
   CXX=g++-$with_gcc_version
   CF=gfortran-$with_gcc_version
   F77=gfortran-$with_gcc_version
   AC_SUBST(CC)
   AC_SUBST(CXX)
   AC_SUBST(CF)
   AC_SUBST(F77)
   ],[])
   
   dnl Checks for Bash
   BASH_PATH=$(which bash)
   BASH=$(which bash | sed 's/\//\\\//g')
   
   if test x$BASH = x; then
       AC_MSG_ERROR([Cannot find bash! You have to install it.])
   fi
   
   AC_SUBST(BASH)
   AC_SUBST(BASH_PATH)
   
 dnl Checks for C compiler  dnl Checks for C compiler
 AC_PROG_CC(gcc)  AC_PROG_CC(gcc)
   
 EXT_SQL=  EXT_SQL=
   
 if test x"$CC" != x""; then  
     GCC_VERSION_MAJEURE=`$CC -v 2>&1 | awk '/^gcc/ { print $3; }' | \  
             awk -F. '{ printf("%s", $1);}'`  
     GCC_VERSION_MINEURE=`$CC -v 2>&1 | awk '/^gcc/ { print $3; }' | \  
             awk -F. '{ printf("%s", $2);}'`  
     if test $GCC_VERSION_MAJEURE -ge 5; then  
         OPTIMISATION_C=-O3  
     else  
         if test $GCC_VERSION_MAJEURE -ge 4 -a $GCC_VERSION_MINEURE -ge 4; \  
                 then  
             OPTIMISATION_C=-O3  
         else  
             if test $GCC_VERSION_MAJEURE -ge 2; then  
                 OPTIMISATION_C=-O2  
             else  
                 AC_MSG_ERROR([Cannot find decent or recent gcc (gcc-4.2 or better)!])  
             fi  
         fi  
     fi  
 fi  
   
 AM_PROG_CC_C_O  AM_PROG_CC_C_O
   
 if test "$GCC" != yes; then  if test "$GCC" != yes; then
Line 68  if test "$GXX" != yes; then Line 72  if test "$GXX" != yes; then
     AC_MSG_ERROR([Cannot find g++! You have to install it.])      AC_MSG_ERROR([Cannot find g++! You have to install it.])
 fi  fi
   
 if test x"$CXX" != x""; then  
     GCC_VERSION_MAJEURE=`$CXX -v 2>&1 | awk '/^gcc/ { print $3; }' | \  
             awk -F. '{ printf("%s", $1);}'`  
     GCC_VERSION_MINEURE=`$CXX -v 2>&1 | awk '/^gcc/ { print $3; }' | \  
             awk -F. '{ printf("%s", $2);}'`  
     if test $GCC_VERSION_MAJEURE -ge 5; then  
         OPTIMISATION_GXX=-O3  
     else  
         if test $GCC_VERSION_MAJEURE -ge 4 -a $GCC_VERSION_MINEURE -ge 4; then  
             OPTIMISATION_GXX=-O3  
         else  
             if test $GCC_VERSION_MAJEURE -ge 3; then  
                 OPTIMISATION_GXX=-O2  
             else  
                 AC_MSG_ERROR([Cannot find decent or recent g++ (g++-4.3 or better)!])  
             fi  
         fi  
     fi  
 fi  
   
 dnl Checks for Fortran 77 compiler  dnl Checks for Fortran 77 compiler
 AC_PROG_F77(gfortran)  AC_PROG_F77(gfortran)
   
 dnl Check for Fortran 9* compiler  dnl Check for Fortran 9* compiler
 AC_PROG_FC(gfortran)  AC_PROG_FC(gfortran)
   
 if test x"$F77" == x; then  if test x"$F77" = x; then
     AC_MSG_ERROR([Cannot find gfortran! You have to install it.])      AC_MSG_ERROR([Cannot find gfortran! You have to install it.])
 fi  fi
   
 if test x"$FC" == x; then  if test x"$FC" = x; then
     AC_MSG_ERROR([Cannot find gfortran! You have to install it.])      AC_MSG_ERROR([Cannot find gfortran! You have to install it.])
 fi  fi
   
 if test x"$FC" != x""; then  OPTIMISATION_C=-O3
     GCC_VERSION_MAJEURE=`$FC -v 2>&1 | awk '/^gcc/ { print $3; }' | \  OPTIMISATION_CXX=-O3
             awk -F. '{ printf("%s", $1);}'`  OPTIMISATION_F=-O3
     GCC_VERSION_MINEURE=`$FC -v 2>&1 | awk '/^gcc/ { print $3; }' | \  
             awk -F. '{ printf("%s", $2);}'`  
     if test $GCC_VERSION_MAJEURE -ge 5; then  
         OPTIMISATION_F=-O3  
     else  
         if test $GCC_VERSION_MAJEURE -ge 4 -a $GCC_VERSION_MINEURE -ge 4; then  
             OPTIMISATION_F=-O3  
         else  
             if test $GCC_VERSION_MAJEURE -ge 3; then  
                 OPTIMISATION_F=-O2  
             else  
                 AC_MSG_ERROR([Cannot find decent or recent gfortran (gfortran-4.3 or better)!])  
             fi  
         fi  
     fi  
 fi  
   
 dnl X paths  dnl X paths
 AC_PATH_X  AC_PATH_X
 AC_PATH_XTRA  AC_PATH_XTRA
   
 if test "$ac_x_includes" != "no"; then  
     if test x"$ac_x_includes" != x; then  
         X_CFLAGS="$X_CFLAGS -I$ac_x_includes"  
         includeX="-I$ac_x_includes"  
     fi  
 fi  
 if test "$ac_x_libraries" != "no"; then  
     if test x"$ac_x_libraries" != x; then  
         X_LIBS="$X_LIBS -L$ac_x_libraries"  
     fi  
 fi  
   
 dnl 32 bits ABI  dnl 32 bits ABI
 AC_ARG_WITH(32bits-abi,  AC_ARG_WITH(32bits-abi,
 [  --with-32bits-abi       force 32bits ABI (multilib)],[  [  --with-32bits-abi       force 32bits ABI (multilib)],[
 if test "$with-32bits-abi" = "no"; then  if test "$with_32bits_abi" = "no"; then
     ABI=      ABI=
 else  else
     ABI=-m32      ABI=-m32
Line 153  fi],[ Line 109  fi],[
 if test x$ABI = x; then  if test x$ABI = x; then
 AC_ARG_WITH(64bits-abi,  AC_ARG_WITH(64bits-abi,
 [  --with-64bits-abi       force 64bits ABI (multilib)],[  [  --with-64bits-abi       force 64bits ABI (multilib)],[
 if test "$with-64bits-abi" = "no"; then  if test "$with_64bits_abi" = "no"; then
     ABI=      ABI=
 else  else
     ABI=-m64      ABI=-m64
Line 165  fi Line 121  fi
   
 LDFLAGS="$LDFLAGS $ABI"  LDFLAGS="$LDFLAGS $ABI"
   
   AC_ARG_WITH(sysroot,
   [  --with-sysroot          sysroot for cross compilation],[
   if test "$with_sysroot" = "no" -o "$with_rpltools" = "yes"; then
       AC_MSG_ERROR([You have to specify sysroot path !])
   else
       SYSROOT="-I$with_sysroot/usr/include"
       SYSROOT2=$with_sysroot
   fi],[
       SYSROOT=
       SYSROOT2=
       ]
   )
   
 AC_ARG_ENABLE(recursive,  AC_ARG_ENABLE(recursive,
 [  --enable-recursive      recursive configuration (default=yes)],[  [  --enable-recursive      recursive configuration (default=yes)],[
 if test "$enableval" = "yes"; then  if test "$enableval" = "yes"; then
Line 176  fi],[ Line 145  fi],[
     ]      ]
 )  )
   
   AC_ARG_ENABLE(native,
   [  --enable-native         enable gcc native compiler option (default=no)],[
   if test "$enableval" = "yes"; then
       CFLAGS="$CFLAGS -mtune=native -march=native"
       FFLAGS="$FFLAGS -mtune=native -march=native"
       CXXFLAGS="$CXXFLAGS -mtune=native -march=native"
       FCFLAGS="$FCFLAGS -mtune=native -march=native"
   else
       NATIVE=
   fi],[
       NATIVE=
       ]
   )
   
 AC_ARG_WITH(rpltools,  AC_ARG_WITH(rpltools,
 [  --with-rpltools         specify rpltools path used for cross compilation],[  [  --with-rpltools         specify rpltools path used for cross compilation],[
 if test "$with_rpltools" = "no" -o "$with_rpltools" = yes; then  if test "$with_rpltools" = "no" -o "$with_rpltools" = "yes"; then
     AC_MSG_ERROR([You have to specify rpltools path !])      AC_MSG_ERROR([You have to specify rpltools path !])
 else  else
     RPLTOOLS=$with_rpltools      RPLTOOLS=$with_rpltools
Line 189  fi],[ Line 172  fi],[
   
 AC_SUBST(RPLTOOLS)  AC_SUBST(RPLTOOLS)
   
   dnl libcurl path
   AC_ARG_WITH(curl,
   [  --with-curl             specify libcurl path used for RPL/CAS],[
   if test "$with_curl" = "no" -o "$with_curl" = "yes"; then
       AC_MSG_ERROR([You have to specify libcurl path !])
   else
       LIBCURL=-L$with_curl
   fi],[
       LIBCURL=
       ]
   )
   
 dnl RPL/CAS support  dnl RPL/CAS support
 AC_ARG_ENABLE(rplcas,  AC_ARG_ENABLE(rplcas,
 [  --enable-rplcas         compile rplcas (default=no)],[  [  --enable-rplcas         compile rplcas (default=no)],[
 if test "$enableval" = "no"; then  if test "$enableval" = "no"; then
     RPLCAS=-URPLCAS      RPLCAS=-URPLCAS
     LIBRPLCAS=      LIBRPLCAS=
       INCRPLCAS=
 else  else
     RPLCAS=-DRPLCAS      RPLCAS=-DRPLCAS
     LIBRPLCAS=\$\(top_builddir\)/rplcas/lib/librplcas.a      LIBRPLCAS="\$(top_builddir)/rplcas/lib/librplcas.a"
   dnl LIBS="$LIBS $LIBCURL -lcurl"
       LIBGIAC="$LIBCURL -lcurl"
       INCRPLCAS="-I\$(top_builddir)/rplcas/include/giac \
               -I\$(top_builddir)/rplcas/include"
 fi],[  fi],[
     RPLCAS=-URPLCAS      RPLCAS=-URPLCAS
     LIBRPLCAS=      LIBRPLCAS=
       INCRPLCAS=
     ]      ]
 )  )
   
 AC_SUBST(ABI)  AC_SUBST(ABI)
 AC_SUBST(RPLCAS)  AC_SUBST(RPLCAS)
 AC_SUBST(LIBRPLCAS)  AC_SUBST(LIBRPLCAS)
   AC_SUBST(INCRPLCAS)
   AC_SUBST(LIBGIAC)
   
 dnl Options  dnl Options
 AC_ARG_ENABLE(optimization,  AC_ARG_ENABLE(optimization,
 [  --enable-optimization   set compiler flags [[default=environment variables -O3]]], [  [  --enable-optimization   set compiler flags [[default=environment variables -O2, enable=environment variables -O3]]], [
 if test "$enableval" = "no"; then  if test "$enableval" = "no"; then
     CFLAGS=$ABI      CFLAGS=$ABI
     FFLAGS=$ABI      FFLAGS=$ABI
     CXXFLAGS=$ABI      CXXFLAGS=$ABI
     FCFLAGS=$ABI      FCFLAGS=$ABI
 else  else
     CFLAGS="$CFLAGS $ABI $enable_optimization"      CFLAGS="$CFLAGS $ABI $OPTIMISATION_C" 
     FFLAGS="$FFLAGS $ABI $enable_optimization"  
     CXXFLAGS="$CXXFLAGS $ABI $enable_optimization"  
     FCFLAGS="$FCFLAGS $ABI $enable_optimization"  
 fi],[  
     CFLAGS="$CFLAGS $ABI $OPTIMISATION_C"  
     FFLAGS="$FFLAGS $ABI $OPTIMISATION_F"      FFLAGS="$FFLAGS $ABI $OPTIMISATION_F"
     CXXFLAGS="$CXXFLAGS $ABI $OPTIMISATION_CXX"      CXXFLAGS="$CXXFLAGS $ABI $OPTIMISATION_CXX"
     FCFLAGS="$FCFLAGS $ABI $OPTIMISATION_F"      FCFLAGS="$FCFLAGS $ABI $OPTIMISATION_F"
   fi],[
       CFLAGS="$CFLAGS $ABI -O2" 
       FFLAGS="$FFLAGS $ABI -O2"
       CXXFLAGS="$CXXFLAGS $ABI -O2"
       FCFLAGS="$FCFLAGS $ABI -O2"
     ]      ]
 )  )
   
   CFLAGS="$CFLAGS -fno-strict-overflow"
   
 AC_MSG_CHECKING([for usable shared memory])  AC_MSG_CHECKING([for usable shared memory])
 AC_COMPILE_IFELSE(  AC_COMPILE_IFELSE(
     [AC_LANG_PROGRAM([#include <sys/shm.h>      [AC_LANG_PROGRAM([#include <sys/shm.h>
Line 239  AC_COMPILE_IFELSE( Line 244  AC_COMPILE_IFELSE(
     )      )
 AC_SUBST(SHARED_MEMORY)  AC_SUBST(SHARED_MEMORY)
   
 AC_MSG_CHECKING([for pselect])  AC_C_INLINE
 AC_COMPILE_IFELSE(  
     [AC_LANG_PROGRAM([#include <sys/select.h>  if test "$ac_cv_c_inline" != no ; then
      #include <unistd.h>      AC_DEFINE(HAVE_INLINE,1,[inline keywork or macro available])
      #include <sys/time.h>      AC_SUBST(HAVE_INLINE)
      #include <sys/types.h>  fi
      ],  
     [  
      struct timespec tv;  
      fd_set s1, s2, s3;  
      tv.tv_sec=1;  
      tv.tv_nsec=0;  
      FD_SET(1, &s1); FD_SET(2, &s2); FD_SET(3, &s3);  
      pselect(5, &s1, &s2, &s3, &tv, NULL);  
      return(0);  
     ])],  
 [PSELECT=-DPSELECT; AC_MSG_RESULT(yes)],  
 [PSELECT=-UPSELECT; AC_MSG_RESULT(no)]  
     )  
 AC_SUBST(PSELECT)  
   
 AC_ARG_ENABLE(sysv-ipcs,  AC_ARG_ENABLE(sysv-ipcs,
 [  --enable-sysv-ipcs      use SystemV IPC functions [[default=guessed]]], [  [  --enable-sysv-ipcs      use SystemV IPC functions [[default=guessed]]], [
Line 269  else Line 260  else
     IPCS_SYSV=-DIPCS_SYSV      IPCS_SYSV=-DIPCS_SYSV
     POSIX_IPCS=yes      POSIX_IPCS=yes
 fi],  fi],
 REG=$LDFLAGS  REG=$LIBS
 POSIX_IPCS=guessed  POSIX_IPCS=guessed
 LDFLAGS=-lrt  LIBS="-lrt -lpthread"
 [AC_MSG_CHECKING([for POSIX semaphores and shared objects])  [AC_MSG_CHECKING([for POSIX semaphores and shared objects])
 AC_RUN_IFELSE(  AC_LINK_IFELSE(
 [AC_LANG_PROGRAM([#include <sys/mman.h>  [AC_LANG_PROGRAM([#include <sys/mman.h>
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <fcntl.h>  #include <fcntl.h>
Line 290  fd = shm_open(sem , O_CREAT | O_RDWR, S_ Line 281  fd = shm_open(sem , O_CREAT | O_RDWR, S_
 [IPCS_SYSV=-UIPCS_SYSV; AC_MSG_RESULT(yes)],  [IPCS_SYSV=-UIPCS_SYSV; AC_MSG_RESULT(yes)],
 [IPCS_SYSV=-DIPCS_SYSV; AC_MSG_RESULT(no)]  [IPCS_SYSV=-DIPCS_SYSV; AC_MSG_RESULT(no)]
     )]      )]
 LDFLAGS=$REG  LIBS=$REG
 )  )
   
 if test "$IPCS_SYSV" = "-UIPCS_SYSV" -a "$POSIX_IPCS" = "guessed"; then  if test "$IPCS_SYSV" = "-UIPCS_SYSV" -a "$POSIX_IPCS" = "guessed"; then
 REG=$LDFLAGS  REG=$LIBS
 LDFLAGS=-pthread  LIBS=-pthread
 AC_MSG_CHECKING([for POSIX anonymous semaphores])  AC_MSG_CHECKING([for POSIX anonymous semaphores])
 AC_RUN_IFELSE(  AC_LINK_IFELSE(
 [AC_LANG_PROGRAM([#include <semaphore.h>  [AC_LANG_PROGRAM([#include <semaphore.h>
  ],   ],
 [ sem_t sem;  [ sem_t sem;
Line 308  AC_RUN_IFELSE( Line 299  AC_RUN_IFELSE(
 [SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES; AC_MSG_RESULT(yes)],  [SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES; AC_MSG_RESULT(yes)],
 [SEMAPHORES_NOMMES=-DSEMAPHORES_NOMMES; AC_MSG_RESULT(no)]  [SEMAPHORES_NOMMES=-DSEMAPHORES_NOMMES; AC_MSG_RESULT(no)]
     )      )
 LDFLAGS=$REG  LDFLAGS=$LIBS
 REG=""  LIBS=$REG
 else  else
     SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES      SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES
 fi  fi
Line 327  AC_ARG_ENABLE(final-encoding, Line 318  AC_ARG_ENABLE(final-encoding,
 [  --enable-final-encoding force final encoding [[default=guessed]]], [  [  --enable-final-encoding force final encoding [[default=guessed]]], [
 if test "$enableval" = "no"; then  if test "$enableval" = "no"; then
     FINAL_ENCODING="\$(shell locale charmap | \      FINAL_ENCODING="\$(shell locale charmap | \
         \$(AWK) '/\=/ { print \$\$3;} !/\=/ { print \$\$1;}')"          \$(AWK) '/=/ { print \$\$3;} !/=/ { print \$\$1;}')"
     FORCED_FINAL_ENCODING=0      FORCED_FINAL_ENCODING=0
 else  else
     FINAL_ENCODING="$enable_final_encoding"      FINAL_ENCODING="$enable_final_encoding"
Line 335  else Line 326  else
 fi], [  fi], [
 FORCED_FINAL_ENCODING=0  FORCED_FINAL_ENCODING=0
 FINAL_ENCODING="\$(shell locale charmap | \  FINAL_ENCODING="\$(shell locale charmap | \
     \$(AWK) '/\=/ { print \$\$3;} !/\=/ { print \$\$1;}')"])      \$(AWK) '/=/ { print \$\$3;} !/=/ { print \$\$1;}')"])
   
 AC_ARG_ENABLE(tex,  AC_ARG_ENABLE(tex,
 [  --enable-tex            provide the TeX support [[default=guessed]]], [  [  --enable-tex            provide the TeX support [[default=guessed]]], [
Line 350  AC_ARG_ENABLE(vim, Line 341  AC_ARG_ENABLE(vim,
 [  --enable-vim            provide the vim support [[default=guessed]]], [  [  --enable-vim            provide the vim support [[default=guessed]]], [
 if test "$enableval" = "no"; then  if test "$enableval" = "no"; then
     VIM_SUPPORT=no      VIM_SUPPORT=no
       DEBVIM=
 else  else
     VIM_SUPPORT=yes      VIM_SUPPORT=yes
       DEBVIM=", vim"
 fi],  fi],
 VIM_SUPPORT=guessed)  VIM_SUPPORT=guessed)
   
Line 387  libX="" Line 380  libX=""
 LIBMOTIF=""  LIBMOTIF=""
 INCMOTIF=""  INCMOTIF=""
 BUILD_OPENMOTIF=""  BUILD_OPENMOTIF=""
   MODULE_MOTIF=""
   
   
   if test "$ac_x_includes" != "no"; then
       if test x"$ac_x_includes" != x; then
           includeX="-I$ac_x_includes"
       fi
   fi
   if test "$ac_x_libraries" != "no"; then
       if test x"$ac_x_libraries" != x; then
           X_LIBS="-L$ac_x_libraries"
       fi
   fi
   
 AC_ARG_ENABLE(motif,  AC_ARG_ENABLE(motif,
 [  --enable-motif          provide the Motif support [[default=guessed]]], [  [  --enable-motif          provide the Motif support [[default=guessed]]], [
Line 395  if test "$enableval" = "no"; then Line 401  if test "$enableval" = "no"; then
 else  else
     MOTIF_SUPPORT="-DMOTIF_SUPPORT"      MOTIF_SUPPORT="-DMOTIF_SUPPORT"
 fi],  fi],
 if test "$have_x" == "yes"; then  if test "$have_x" = "yes"; then
     MOTIF_SUPPORT="-DMOTIF_SUPPORT"      MOTIF_SUPPORT="-DMOTIF_SUPPORT"
 else  else
     MOTIF_SUPPORT="-UMOTIF_SUPPORT"      MOTIF_SUPPORT="-UMOTIF_SUPPORT"
 fi)  fi)
   
   dnl libXinerama path
   AC_ARG_WITH(xinerama,
   [  --with-xinerama         specify libxinerama path used for Motif],[
   if test "$with_xinerama" = "no" -o "$with_xinerama" = "yes"; then
       AC_MSG_ERROR([You have to specify libxinerama path !])
   else
       LIBXINERAMA=-L$with_xinerama
   fi],[
       LIBXINERAMA=
       ]
   )
   
 if test "$MOTIF_SUPPORT" = "-DMOTIF_SUPPORT"; then  if test "$MOTIF_SUPPORT" = "-DMOTIF_SUPPORT"; then
     libX="$X_LIBS -lXt -lX11"      libX="$X_LIBS -lXt -lX11 -lXext $LIBXINERAMA -lXinerama"
     LIBMOTIF="\$(top_builddir)/tools/$OPENMOTIF/lib/Xm/.libs/libXm.a \      LIBMOTIF="\$(top_builddir)/tools/$OPENMOTIF/install/lib/libXm.a \
             \$(top_builddir)/tools/$LIBXPM/src/.libs/libXpm.a"              \$(top_builddir)/tools/$LIBXPM/src/.libs/libXpm.a"
     INCMOTIF="-I\$(top_srcdir)/tools/$OPENMOTIF/lib \      INCMOTIF="-I\$(top_srcdir)/tools/$OPENMOTIF/lib \
             -I\$(top_builddir)/tools/$OPENMOTIF/lib \              -I\$(top_builddir)/tools/$OPENMOTIF/lib \
Line 414  if test "$MOTIF_SUPPORT" = "-DMOTIF_SUPP Line 432  if test "$MOTIF_SUPPORT" = "-DMOTIF_SUPP
         AC_CONFIG_SUBDIRS(tools/$LIBXPM)          AC_CONFIG_SUBDIRS(tools/$LIBXPM)
         AC_CONFIG_SUBDIRS(tools/$OPENMOTIF)          AC_CONFIG_SUBDIRS(tools/$OPENMOTIF)
     fi;      fi;
   
       MODULE_MOTIF="modules/motif"
 fi  fi
   
 AC_ARG_ENABLE(experimental,  AC_ARG_ENABLE(experimental,
Line 443  fi], [PROFILAGE=""]) Line 463  fi], [PROFILAGE=""])
   
 AC_SUBST(PROFILAGE)  AC_SUBST(PROFILAGE)
   
   dnl Checks for uuencode
   AC_CHECK_PROG(UUENCODE, uuencode, yes, no)
   if test "$UUENCODE" = no; then
       AC_MSG_ERROR([Can not find uuencode !])
   fi
   
   dnl Checks for patch
   AC_CHECK_PROG(PATCH, patch, yes, no)
   if test "$PATCH" = no; then
       AC_MSG_ERROR([Can not find patch !])
   fi
   
 if test ! -d tools; then  if test ! -d tools; then
     mkdir tools      mkdir tools
 fi  fi
Line 450  if test ! -d "$srcdir"/tools/$NCURSES; t Line 482  if test ! -d "$srcdir"/tools/$NCURSES; t
     gunzip -c "$srcdir"/tools/$NCURSES.tar.gz | \      gunzip -c "$srcdir"/tools/$NCURSES.tar.gz | \
             (cd "$srcdir/tools" && tar -xf -)              (cd "$srcdir/tools" && tar -xf -)
     (cd "$srcdir/tools/"$NCURSES && \      (cd "$srcdir/tools/"$NCURSES && \
             for i in ../$NCURSES*.patch.gz;              for i in $(ls ../$NCURSES*.sh.gz);
             do gunzip -c $i | patch -p1;              do echo Uncompressing script $i; TMP=$i; gunzip -c $i > ${TMP%.*};
               done;
               for i in $(ls ../$NCURSES*.sh);
               do echo Applying script $i && chmod 775 $i && ./$i;
               done;
               for i in $(ls ../$NCURSES*.patch.gz);
               do echo Applying patch $i && \
                   gunzip -c $i | patch -p1;
             done);              done);
 fi  fi
 if test ! -d "$srcdir"/tools/$READLINE; then  if test ! -d "$srcdir"/tools/$READLINE; then
Line 465  fi Line 504  fi
 if test ! -d "$srcdir"/tools/$GSL; then  if test ! -d "$srcdir"/tools/$GSL; then
     gunzip -c "$srcdir"/tools/$GSL.tar.gz | \      gunzip -c "$srcdir"/tools/$GSL.tar.gz | \
             (cd "$srcdir/tools" && tar -xf -)              (cd "$srcdir/tools" && tar -xf -)
               (cd "$srcdir"/tools/$GSL && ./autogen.sh)
     if test $(uname) = "OS/2"; then      if test $(uname) = "OS/2"; then
         (cd "$srcdir"/tools/$GSL; \          (cd "$srcdir"/tools/$GSL; \
                 TMP=$(mktemp tmp.XXXXXXXXXX); \                  TMP=$(mktemp tmp.XXXXXXXXXX); \
Line 475  fi Line 515  fi
 if test ! -d "$srcdir"/tools/$GPP; then  if test ! -d "$srcdir"/tools/$GPP; then
     gunzip -c "$srcdir"/tools/$GPP.tar.gz | \      gunzip -c "$srcdir"/tools/$GPP.tar.gz | \
             (cd "$srcdir/tools" && tar -xf -)              (cd "$srcdir/tools" && tar -xf -)
               (cd "$srcdir"/tools/$GPP && autoreconf -i)
 fi  fi
 if test ! -d "$srcdir"/tools/$FILE; then  if test ! -d "$srcdir"/tools/$FILE; then
     gunzip -c "$srcdir"/tools/$FILE.tar.gz | \      gunzip -c "$srcdir"/tools/$FILE.tar.gz | \
             (cd "$srcdir/tools" && tar -xf - )              (cd "$srcdir/tools" && tar -xf - )
     (cd "$srcdir/tools"/$FILE && gunzip -c ../$FILE.diff.gz | patch -p1)      (cd "$srcdir/tools"/$FILE && gunzip -c ../$FILE.diff.gz | patch -p1 && \
 fi              autoreconf)
 if test ! -d "$srcdir"/tools/$ICONV; then  
     gunzip -c "$srcdir"/tools/$ICONV.tar.gz | \  
             (cd "$srcdir/tools" && tar -xf -)  
 fi  fi
 if test ! -d "$srcdir"/tools/$SQLITE; then  if test ! -d "$srcdir"/tools/$SQLITE; then
     gunzip -c "$srcdir"/tools/$SQLITE.tar.gz | \      gunzip -c "$srcdir"/tools/$SQLITE.tar.gz | \
Line 492  fi Line 530  fi
 if test ! -d "$srcdir"/tools/$SIGSEGV; then  if test ! -d "$srcdir"/tools/$SIGSEGV; then
     gunzip -c "$srcdir"/tools/$SIGSEGV.tar.gz | \      gunzip -c "$srcdir"/tools/$SIGSEGV.tar.gz | \
             (cd "$srcdir/tools" && tar -xf -)              (cd "$srcdir/tools" && tar -xf -)
       (cd "$srcdir/tools/$SIGSEGV" && ./autogen.sh --skip-gnulib)
   fi
   if test ! -d "$srcdir"/tools/$ICONV; then
       gunzip -c "$srcdir"/tools/$ICONV.tar.gz | \
               (cd "$srcdir/tools" && tar -xf -)
       (cd "$srcdir"/tools/$ICONV && ln -sf ../$SIGSEGV/gnulib gnulib)
 fi  fi
 if test ! -d "$srcdir"/tools/$OPENMOTIF; then  if test ! -d "$srcdir"/tools/$OPENMOTIF; then
     gunzip -c "$srcdir"/tools/$OPENMOTIF.tar.gz | \      gunzip -c "$srcdir"/tools/$OPENMOTIF.tar.gz | \
Line 505  if test ! -d tools/$OPENSSL; then Line 549  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 516  if test ! -d "$srcdir"/rplcas/$MPFR; the Line 564  if test ! -d "$srcdir"/rplcas/$MPFR; the
     gunzip -c "$srcdir"/rplcas/$MPFR.tar.gz | \      gunzip -c "$srcdir"/rplcas/$MPFR.tar.gz | \
             (cd "$srcdir/rplcas" && tar -xf -)              (cd "$srcdir/rplcas" && tar -xf -)
 fi  fi
   if test ! -d "$srcdir"/rplcas/$MPFI; then
       gunzip -c "$srcdir"/rplcas/$MPFI.tar.gz | \
               (cd "$srcdir/rplcas" && tar -xf -)
       (cd "$srcdir"/rplcas/$MPFI && ./autogen.sh)
   fi
 if test ! -d rplcas/$NTL; then  if test ! -d rplcas/$NTL; then
     gunzip -c "$srcdir"/rplcas/$NTL.tar.gz | \      gunzip -c "$srcdir"/rplcas/$NTL.tar.gz | \
             (cd rplcas && tar -xf -)              (cd rplcas && tar -xf -)
 fi  fi
 if test ! -d rplcas/$COCOA; then  
     gunzip -c "$srcdir"/rplcas/$COCOA.tar.gz | \  
             (cd rplcas && tar -xf -)  
 fi  
 if test ! -d rplcas/$PARI; then  if test ! -d rplcas/$PARI; then
     gunzip -c "$srcdir"/rplcas/$PARI.tar.gz | \      gunzip -c "$srcdir"/rplcas/$PARI.tar.gz | \
             (cd rplcas && tar -xf -)              (cd rplcas && tar -xf -)
Line 573  if test "$SED" = no; then Line 622  if test "$SED" = no; then
     AC_MSG_ERROR([Can not find sed !])      AC_MSG_ERROR([Can not find sed !])
 fi  fi
   
   dnl Checks for yacc
   AC_CHECK_PROG(YACC, yacc, yes, no)
   if test "$YACC" = no; then
       AC_MSG_ERROR([Can not find yacc !])
   fi
   
 dnl Checks for TeX, LaTeX, dvips, gs, gv, vim and gnuplot  dnl Checks for TeX, LaTeX, dvips, gs, gv, vim and gnuplot
 if test "$TEX_SUPPORT" = guessed; then  if test "$TEX_SUPPORT" = guessed; then
     POSTSCRIPT_SUPPORT="-DPOSTSCRIPT_SUPPORT"      POSTSCRIPT_SUPPORT="-DPOSTSCRIPT_SUPPORT"
Line 649  if test "$VIM_SUPPORT" = guessed; then Line 704  if test "$VIM_SUPPORT" = guessed; then
 Download at http://www.vim.org/  Download at http://www.vim.org/
 ])  ])
         VIM_SUPPORT="-UVIM_SUPPORT"          VIM_SUPPORT="-UVIM_SUPPORT"
           DEBVIM=
     else      else
         VIM_SUPPORT="-DVIM_SUPPORT"          VIM_SUPPORT="-DVIM_SUPPORT"
           DEBVIM=", vim"
     fi      fi
 else  else
     if test "$VIM_SUPPORT" = no; then      if test "$VIM_SUPPORT" = no; then
         VIM_SUPPORT="-UVIM_SUPPORT"          VIM_SUPPORT="-UVIM_SUPPORT"
           DEBVIM=
     else      else
         VIM_SUPPORT="-DVIM_SUPPORT"          VIM_SUPPORT="-DVIM_SUPPORT"
           DEBVIM=", vim"
     fi      fi
 fi  fi
   
Line 672  AC_SUBST(libX) Line 731  AC_SUBST(libX)
 AC_SUBST(includeX)  AC_SUBST(includeX)
   
 dnl Date  dnl Date
 DATE=$(LANG=C date +"%A, %e %B %Y %T %z")  DATE=$(env LC_ALL=C date +"%A, %e %B %Y %T %z")
   DATE_FR=$(env LC_ALL=fr_FR date +"%A, %e %B %Y %T %z")
 AC_SUBST(DATE)  AC_SUBST(DATE)
   AC_SUBST(DATE_FR)
   
 dnl Checks for libraries  dnl Checks for libraries
 AC_CHECK_LIB(m, main,, AC_MSG_ERROR([Can not find libm !]))  AC_CHECK_LIB(m, main,, AC_MSG_ERROR([Can not find libm !]))
 AC_CHECK_LIB(c, pthread_mutex_init,,  AC_CHECK_LIB(c, pthread_mutex_init,,
              [AC_CHECK_LIB(pthread, main,,               [AC_CHECK_LIB(pthread, main,,
              AC_MSG_ERROR([Can not find libpthread !]))])               AC_MSG_ERROR([Can not find libpthread !]))])
   if test "$MOTIF_SUPPORT" = "-DMOTIF_SUPPORT"; then
       REG=$LIBS
       LIBS="$LIBS $libX"
       AC_CHECK_LIB(Xinerama, XineramaIsActive,,
                    AC_MSG_ERROR([Can not find libXinerama !]))
       LIBS=$REG
   fi
   AC_CHECK_LIB(gomp, omp_get_num_procs,, AC_MSG_ERROR([Can not find libgomp !]))
   OPENMP=-lgomp
   AC_SUBST(OPENMP)
   
 dnl Check for union semun  dnl Check for union semun
 AC_CHECK_TYPE([union semun], SEMUN=-DUNION_SEMUN, SEMUN=-UUNION_SEMUN, [[  AC_CHECK_TYPE([union semun], SEMUN=-DUNION_SEMUN, SEMUN=-UUNION_SEMUN, [[
Line 702  dnl Do we need to use -lrt? Line 773  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 712  AC_ARG_WITH(mysql, Line 789  AC_ARG_WITH(mysql,
 [  --with-mysql=PATH         specify directory for installed mysql],  [  --with-mysql=PATH         specify directory for installed mysql],
 [], [with_mysql=check])  [], [with_mysql=check])
   
 if test "x$with_mysql" = xcheck -o "x$with_mysql" = yes; then  if test "x$with_mysql" = xcheck -o "x$with_mysql" = xyes; then
     libMySQLinc="-I/usr/include"      libMySQLinc="-I/usr/include"
     libMySQLlib="/usr/lib"      libMySQLlib="/usr/lib"
   
Line 789  if test "$MYSQL_SUPPORT" = "-DMYSQL_SUPP Line 866  if test "$MYSQL_SUPPORT" = "-DMYSQL_SUPP
         if test $STATIC = no; then          if test $STATIC = no; then
             LIBS="$LIBS -L/$libMySQLlib -lmysqlclient_r $libMySQLinc"              LIBS="$LIBS -L/$libMySQLlib -lmysqlclient_r $libMySQLinc"
         else          else
             LIBS="$LIBS $libMySQLlib/libmysqlclient_r.a -lz $libMySQLinc"              LIBS="$LIBS $libMySQLlib/libmysqlclient_r.a $libMySQLinc"
         fi          fi
         AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[MYSQL mysql; mysql_init(&mysql);]])],[AC_MSG_RESULT([yes]); MYSQL_LIB="yes"],[AC_MSG_RESULT([no]); MYSQL_LIB="no"])          AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[MYSQL mysql; mysql_init(&mysql);]])],[AC_MSG_RESULT([yes]); MYSQL_LIB="yes"],[AC_MSG_RESULT([no]); MYSQL_LIB="no"])
         LIBS=$saved_LIBS;          LIBS=$saved_LIBS;
Line 806  if test "$MYSQL_SUPPORT" = "-DMYSQL_SUPP Line 883  if test "$MYSQL_SUPPORT" = "-DMYSQL_SUPP
     fi      fi
 fi  fi
   
   DEBMYSQL=
   
 if test "$MYSQL_SUPPORT" != "-DMYSQL_SUPPORT"; then  if test "$MYSQL_SUPPORT" != "-DMYSQL_SUPPORT"; then
     libMySQLinc=      libMySQLinc=
     libMySQLlib=      libMySQLlib=
   else
       DEBMYSQL=", libmysqlclient18"
 fi  fi
   
 AC_SUBST(MYSQL_SUPPORT)  AC_SUBST(MYSQL_SUPPORT)
Line 952  if test "$POSTGRESQL_SUPPORT" = "-DPOSTG Line 1033  if test "$POSTGRESQL_SUPPORT" = "-DPOSTG
     fi      fi
 fi  fi
   
   DEBPQ=
   
 if test "$POSTGRESQL_SUPPORT" != "-DPOSTGRESQL_SUPPORT"; then  if test "$POSTGRESQL_SUPPORT" != "-DPOSTGRESQL_SUPPORT"; then
     libPgSQLinc=      libPgSQLinc=
     libPgSQLlib=      libPgSQLlib=
   else
       DEBPQ=", libpq5"
 fi  fi
   
 AC_SUBST(POSTGRESQL_SUPPORT)  AC_SUBST(POSTGRESQL_SUPPORT)
Line 1047  AC_ARG_WITH(openssl_arch, Line 1132  AC_ARG_WITH(openssl_arch,
 if test $(uname) = "OS/2"; then  if test $(uname) = "OS/2"; then
     bash -c "cd tools/$OPENSSL && os2/OS2-EMX.cmd"      bash -c "cd tools/$OPENSSL && os2/OS2-EMX.cmd"
 else  else
       if test $build = $host; then
           OPENSSL_CROSS=
       else
           OPENSSL_CROSS="AR=$host-ar RANLIB=$host-ranlib CC=$host-gcc NM=$host-nm"
       fi
       echo $build $host
       echo $OPENSSL_CROSS
     if test "x$with_openssl_arch" = xnone; then      if test "x$with_openssl_arch" = xnone; then
         (cd tools/$OPENSSL && ./config no-asm)          (cd tools/$OPENSSL && sh -c "$OPENSSL_CROSS ./config no-asm")
     elif test "x$with_openssl_arch" = xyes -o "x$with_openssl_arch" = xno; then      elif test "x$with_openssl_arch" = xyes -o "x$with_openssl_arch" = xno; then
         (cd tools/$OPENSSL && ./Configure)          (cd tools/$OPENSSL && ./Configure)
         AC_MSG_ERROR([OS/COMP informations are required!])          AC_MSG_ERROR([OS/COMP informations are required!])
Line 1056  else Line 1148  else
         (cd tools/$OPENSSL && ./Configure)          (cd tools/$OPENSSL && ./Configure)
         AC_MSG_ERROR([Please specify OS and Architecture])          AC_MSG_ERROR([Please specify OS and Architecture])
     else      else
         (cd tools/$OPENSSL && ./Configure no-asm $with_openssl_arch)          (cd tools/$OPENSSL && sh -c "$OPENSSL_CROSS ./Configure no-asm \
                   $with_openssl_arch")
     fi      fi
 fi  fi
   
Line 1079  AC_SUBST(GNUPLOT_COMPILATION) Line 1172  AC_SUBST(GNUPLOT_COMPILATION)
   
 HOST=$target  HOST=$target
 AC_SUBST(HOST)  AC_SUBST(HOST)
   BUILD=$build
   AC_SUBST(BUILD)
   
 my_save_cflags="$CFLAGS"  my_save_cflags="$CFLAGS"
 FPCFLAGS=""  FPCFLAGS=""
Line 1088  AC_MSG_CHECKING([whether CC supports -ma Line 1183  AC_MSG_CHECKING([whether CC supports -ma
 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
     [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -malign-double"],      [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -malign-double"],
     [AC_MSG_RESULT([no])])      [AC_MSG_RESULT([no])])
 CFLAGS=-mieee-fp  #CFLAGS=-mieee-fp
 AC_MSG_CHECKING([whether CC supports -mieee-fp])  #AC_MSG_CHECKING([whether CC supports -mieee-fp])
 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],  #AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
     [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -mieee-fp"],  #    [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -mieee-fp"],
     [AC_MSG_RESULT([no])])  #   [AC_MSG_RESULT([no])])
 CFLAGS=-mieee  CFLAGS=-mieee
 AC_MSG_CHECKING([whether CC supports -mieee])  AC_MSG_CHECKING([whether CC supports -mieee])
 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
Line 1123  esac Line 1218  esac
   
 AC_SUBST(OS)  AC_SUBST(OS)
   
 DATE_FR=$(env LC_ALL=fr_FR date +'%A %x, %X %Z')  
 DATE=$(env LC_ALL=C date +'%A %x, %X %Z')  
 MALLOC=  MALLOC=
   NO_EXPORT_DYNAMIC=-Wl,--no-export-dynamic
   
 case $OS in  case $OS in
     Darwin)      Darwin)
Line 1180  case $OS in Line 1274  case $OS in
     OS/2)      OS/2)
         if test $FORCED_FINAL_ENCODING -eq 0; then \          if test $FORCED_FINAL_ENCODING -eq 0; then \
             FINAL_ENCODING=CP850; \              FINAL_ENCODING=CP850; \
               FORCED_FINAL_ENCODING=1;\
         fi;          fi;
         OS=OS2          OS=OS2
         NESTED_FUNCTIONS=          NESTED_FUNCTIONS=
Line 1197  case $OS in Line 1292  case $OS in
     OpenBSD)      OpenBSD)
         if test $FORCED_FINAL_ENCODING -eq 0; then \          if test $FORCED_FINAL_ENCODING -eq 0; then \
             FINAL_ENCODING=UTF-8; \              FINAL_ENCODING=UTF-8; \
               FORCED_FINAL_ENCODING=1;\
         fi;          fi;
         EXPORT_DYNAMIC=-Wl,--export-dynamic          EXPORT_DYNAMIC=-Wl,--export-dynamic
         NESTED_FUNCTIONS=          NESTED_FUNCTIONS=
Line 1252  case $OS in Line 1348  case $OS in
     break ;;      break ;;
 esac  esac
   
   dnl Correction d'un problème de compilation pour GNUplot 5.0.0
   ac_configure_args="$ac_configure_args --disable-wxwidgets"
   dnl Correction d'un problème d'ABI avec readline
   ac_configure_args="$ac_configure_args \
           --with-abi-version=5.9 --with-rel-version=5.9"
   
 case $OS in  case $OS in
     OS2)      OS2)
         WHOLE_LIB1=""          WHOLE_LIB1=""
Line 1266  case $OS in Line 1368  case $OS in
     break ;;      break ;;
 esac  esac
   
   BROKEN_SIGSEGV=-UBROKEN_SIGSEGV
   BUILD_SIGSEGV=$SIGSEGV
   if test x"$LIB_PREFIX" = x"lib"; then
       LIBSIGSEGV=\$\(top_builddir\)/tools/$SIGSEGV/src/.libs/libsigsegv.a
   else
       LIBSIGSEGV=\$\(top_builddir\)/tools/$SIGSEGV/src/.libs/sigsegv.a
   fi
   INCSIGSEGV="-I\$(top_builddir)/tools/$SIGSEGV/src"
   CYGWIN_LDFLAGS=
   
   case $HOST in
       x86_64-*-linux-gnu)
           ARCH=amd64
       break ;;
   
       i?86-*-linux-gnu)
           ARCH=i386
       break ;;
   
       arm-unknown-linux-gnueabi)
           ARCH=armel
       break;;
   
       mips*el-unknown-linux-gnu)
           ARCH=mipsel
       break;;
   
       x86_64-*-cygwin)
           BROKEN_SIGSEGV=-DBROKEN_SIGSEGV
           BUILD_SIGSEGV=
           INCSIGSEGV=
           LIBSIGSEGV=
           ARCH=$(echo $HOST | cut -f1 -d-)
           CYGWIN_LDFLAGS=-Wl,--allow-multiple-definition \
                   -Wl,--out-implib,rpl.exe.a
       break;;
   
       *)
           ARCH=$(echo $HOST | cut -f1 -d-)
       break ;;
   esac
   
   AC_SUBST(INCSIGSEGV)
   AC_SUBST(LIBSIGSEGV)
 AC_SUBST(WHOLE_LIB1)  AC_SUBST(WHOLE_LIB1)
 AC_SUBST(WHOLE_LIB2)  AC_SUBST(WHOLE_LIB2)
 AC_SUBST(LIB_PREFIX)  AC_SUBST(LIB_PREFIX)
   AC_SUBST(CYGWIN_LDFLAGS)
   
 AC_SUBST(C_STANDARD)  AC_SUBST(C_STANDARD)
 AC_SUBST(EXPORT_DYNAMIC)  AC_SUBST(EXPORT_DYNAMIC)
   AC_SUBST(NO_EXPORT_DYNAMIC)
 AC_SUBST(NESTED_FUNCTIONS)  AC_SUBST(NESTED_FUNCTIONS)
 AC_SUBST(SEMAPHORES_NOMMES)  AC_SUBST(SEMAPHORES_NOMMES)
 AC_SUBST(IPCS_SYSV)  AC_SUBST(IPCS_SYSV)
Line 1279  AC_SUBST(SEMUN) Line 1427  AC_SUBST(SEMUN)
 AC_SUBST(IPV6)  AC_SUBST(IPV6)
 AC_SUBST(BSH_PATH)  AC_SUBST(BSH_PATH)
 AC_SUBST(ELF)  AC_SUBST(ELF)
   AC_SUBST(ARCH)
   
 AC_SUBST(NCURSES)  AC_SUBST(NCURSES)
 AC_SUBST(READLINE)  AC_SUBST(READLINE)
Line 1295  AC_SUBST(OPENMOTIF) Line 1444  AC_SUBST(OPENMOTIF)
 AC_SUBST(BUILD_OPENMOTIF)  AC_SUBST(BUILD_OPENMOTIF)
 AC_SUBST(SIGSEGV)  AC_SUBST(SIGSEGV)
 AC_SUBST(FINAL_ENCODING)  AC_SUBST(FINAL_ENCODING)
   AC_SUBST(FORCED_FINAL_ENCODING)
 AC_SUBST(DATE)  AC_SUBST(DATE)
 AC_SUBST(DATE_FR)  
 AC_SUBST(EXT_SQL)  AC_SUBST(EXT_SQL)
 AC_SUBST(MALLOC)  AC_SUBST(MALLOC)
 AC_SUBST(GMP)  AC_SUBST(GMP)
 AC_SUBST(MPFR)  AC_SUBST(MPFR)
   AC_SUBST(MPFI)
 AC_SUBST(NTL)  AC_SUBST(NTL)
 AC_SUBST(COCOA)  
 AC_SUBST(PARI)  AC_SUBST(PARI)
 AC_SUBST(GIAC)  AC_SUBST(GIAC)
 AC_SUBST(INCMOTIF)  AC_SUBST(INCMOTIF)
 AC_SUBST(LIBMOTIF)  AC_SUBST(LIBMOTIF)
   AC_SUBST(MODULE_MOTIF)
   AC_SUBST(ZLIB)
   AC_SUBST(BUILD_SIGSEGV)
   AC_SUBST(BROKEN_SIGSEGV)
   
 AC_SUBST(CFLAGS)  AC_SUBST(CFLAGS)
 AC_SUBST(CXXFLAGS)  AC_SUBST(CXXFLAGS)
 AC_SUBST(FFLAGS)  AC_SUBST(FFLAGS)
 AC_SUBST(FCFLAGS)  AC_SUBST(FCFLAGS)
 AC_SUBST(LDFLAGS)  AC_SUBST(LDFLAGS)
   AC_SUBST(SYSROOT)
   AC_SUBST(SYSROOT2)
   
   AC_SUBST(DEBPQ)
   AC_SUBST(DEBMYSQL)
   AC_SUBST(DEBVIM)
   
 if test $RECURSIVE = yes; then  if test $RECURSIVE = yes; then
     AC_CONFIG_SUBDIRS(tools/$NCURSES)      AC_CONFIG_SUBDIRS(tools/$NCURSES)
Line 1323  if test $RECURSIVE = yes; then Line 1482  if test $RECURSIVE = yes; then
     AC_CONFIG_SUBDIRS(tools/$ICONV)      AC_CONFIG_SUBDIRS(tools/$ICONV)
     AC_CONFIG_SUBDIRS(tools/$SQLITE)      AC_CONFIG_SUBDIRS(tools/$SQLITE)
     AC_CONFIG_SUBDIRS(tools/$UNITS)      AC_CONFIG_SUBDIRS(tools/$UNITS)
     AC_CONFIG_SUBDIRS(tools/$SIGSEGV)      if test x$BUILD_SIGSEGV = x$SIGSEGV; then
           AC_CONFIG_SUBDIRS(tools/$SIGSEGV)
       fi
 fi  fi
   
 AC_CONFIG_FILES(Makefile)  AC_CONFIG_FILES(Makefile)
 AC_CONFIG_FILES(COPYING)  AC_CONFIG_FILES(HEADER)
 AC_CONFIG_FILES(tools/Makefile)  AC_CONFIG_FILES(tools/Makefile)
 AC_CONFIG_FILES(src/Makefile)  AC_CONFIG_FILES(src/Makefile)
 AC_CONFIG_FILES(man/Makefile)  AC_CONFIG_FILES(man/Makefile)
Line 1344  AC_CONFIG_FILES(rplcas/Makefile) Line 1505  AC_CONFIG_FILES(rplcas/Makefile)
 AC_CONFIG_FILES(rplawk/Makefile)  AC_CONFIG_FILES(rplawk/Makefile)
 AC_CONFIG_FILES(lapack/lapack/Makefile)  AC_CONFIG_FILES(lapack/lapack/Makefile)
 AC_CONFIG_FILES(lapack/blas/Makefile)  AC_CONFIG_FILES(lapack/blas/Makefile)
   AC_CONFIG_FILES(modules/motif/Makefile)
   AC_CONFIG_FILES(modules/sets/Makefile)
   
 AC_CONFIG_FILES(man/rpl.1)  AC_CONFIG_FILES(man/rpl.1)
 AC_CONFIG_FILES(man/rplcc.1)  AC_CONFIG_FILES(man/rplcc.1)
Line 1356  AC_CONFIG_FILES(man/fr_FR/rpllink.1) Line 1519  AC_CONFIG_FILES(man/fr_FR/rpllink.1)
 AC_CONFIG_FILES(man/fr_FR/rpltags.1)  AC_CONFIG_FILES(man/fr_FR/rpltags.1)
 AC_CONFIG_FILES(man/fr_FR/mkrplso.1)  AC_CONFIG_FILES(man/fr_FR/mkrplso.1)
   
   AC_CONFIG_FILES(DEBIAN/control)
   
 AC_OUTPUT  AC_OUTPUT

Removed from v.1.8  
changed lines
  Added in v.1.283


CVSweb interface <joel.bertrand@systella.fr>