Diff for /rpl/configure.ac between versions 1.244 and 1.268

version 1.244, 2019/10/25 20:17:06 version 1.268, 2021/12/16 10:17:38
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.31])  AC_INIT([rpl],[4.1.33])
 AC_CANONICAL_TARGET  AC_CANONICAL_TARGET
 AM_INIT_AUTOMAKE(silent-rules)  AM_INIT_AUTOMAKE(silent-rules)
 AM_SILENT_RULES([yes])  AM_SILENT_RULES([yes])
Line 7  AC_SUBST(target_cpu) Line 7  AC_SUBST(target_cpu)
 AC_CONFIG_HEADERS([rplconfig.h])  AC_CONFIG_HEADERS([rplconfig.h])
   
 dnl Libraries  dnl Libraries
 NCURSES=ncurses-6.1  NCURSES=ncurses-6.3
 READLINE=readline-8.0  READLINE=readline-8.1
 UNITS=units-2.19  UNITS=units-2.21
 GSL=gsl-2.6  GSL=gsl-2.7.1
 GPP=gpp-3.0  GPP=gpp-3.0
 GNUPLOT=gnuplot-5.2.7  GNUPLOT=gnuplot-5.4.2
 FILE=file-5.37  dnl ftp://ftp.astron.com/pub/file/
   FILE=file-5.41
 ICONV=libiconv-1.16  ICONV=libiconv-1.16
 SQLITE=sqlite-3.30.1  SQLITE=sqlite-3.37.0
 OPENSSL=openssl-1.1.1d  OPENSSL=openssl-1.1.1l
 OPENMOTIF=motif-2.3.8  OPENMOTIF=motif-2.3.8
 LIBXPM=libXpm-3.5.12  LIBXPM=libXpm-3.5.12
 SIGSEGV=libsigsegv-2.12  SIGSEGV=libsigsegv-2.12
 ZLIB=zlib-1.2.11  ZLIB=zlib-1.2.11
   
 GMP=gmp-6.1.2  GMP=gmp-6.2.1
 MPFR=mpfr-4.0.2  MPFR=mpfr-4.1.0
 MPFI=mpfi-1.5.3  MPFI=mpfi-1.5.4
 NTL=ntl-11.0.0  NTL=ntl-11.5.1
 COCOA=CoCoALib-0.99600  PARI=pari-2.13.3
 PARI=pari-2.9.5  GIAC=giac-1.7.0
 GIAC=giac-1.4.9  
   
 dnl 32 bits ABI  dnl 32 bits ABI
 AC_ARG_WITH(gcc_version,  AC_ARG_WITH(gcc_version,
Line 318  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 326  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 491  if test ! -d "$srcdir"/tools/$NCURSES; t Line 491  if test ! -d "$srcdir"/tools/$NCURSES; t
             for i in $(ls ../$NCURSES*.patch.gz);              for i in $(ls ../$NCURSES*.patch.gz);
             do echo Applying patch $i && \              do echo Applying patch $i && \
                 gunzip -c $i | patch -p1;                  gunzip -c $i | patch -p1;
             done;  
             for i in $(ls ../ncurses-6.1*.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 574  if test ! -d rplcas/$NTL; then Line 570  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 1457  AC_SUBST(GMP) Line 1449  AC_SUBST(GMP)
 AC_SUBST(MPFR)  AC_SUBST(MPFR)
 AC_SUBST(MPFI)  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)

Removed from v.1.244  
changed lines
  Added in v.1.268


CVSweb interface <joel.bertrand@systella.fr>