--- rpl/configure.ac 2019/10/25 20:17:06 1.244 +++ rpl/configure.ac 2023/08/07 08:05:59 1.285 @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([rpl],[4.1.31]) +AC_INIT([rpl],[4.1.34]) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(silent-rules) AM_SILENT_RULES([yes]) @@ -7,28 +7,28 @@ AC_SUBST(target_cpu) AC_CONFIG_HEADERS([rplconfig.h]) dnl Libraries -NCURSES=ncurses-6.1 -READLINE=readline-8.0 -UNITS=units-2.19 -GSL=gsl-2.6 +NCURSES=ncurses-6.4 +READLINE=readline-8.2 +UNITS=units-2.22 +GSL=gsl-2.7.1 GPP=gpp-3.0 -GNUPLOT=gnuplot-5.2.7 -FILE=file-5.37 -ICONV=libiconv-1.16 -SQLITE=sqlite-3.30.1 -OPENSSL=openssl-1.1.1d +GNUPLOT=gnuplot-5.4.8 +dnl ftp://ftp.astron.com/pub/file/ +FILE=file-5.45 +ICONV=libiconv-1.17 +SQLITE=sqlite-3.42.0 +OPENSSL=openssl-3.1.2 OPENMOTIF=motif-2.3.8 -LIBXPM=libXpm-3.5.12 -SIGSEGV=libsigsegv-2.12 -ZLIB=zlib-1.2.11 - -GMP=gmp-6.1.2 -MPFR=mpfr-4.0.2 -MPFI=mpfi-1.5.3 -NTL=ntl-11.0.0 -COCOA=CoCoALib-0.99600 -PARI=pari-2.9.5 -GIAC=giac-1.4.9 +LIBXPM=libXpm-3.5.16 +SIGSEGV=libsigsegv-2.14 +ZLIB=zlib-1.2.13 + +GMP=gmp-6.3.0 +MPFR=mpfr-4.2.0 +MPFI=mpfi-1.5.4 +NTL=ntl-11.5.1 +PARI=pari-2.15.4 +GIAC=giac-1.9.0 dnl 32 bits ABI AC_ARG_WITH(gcc_version, @@ -318,7 +318,7 @@ AC_ARG_ENABLE(final-encoding, [ --enable-final-encoding force final encoding [[default=guessed]]], [ if test "$enableval" = "no"; then FINAL_ENCODING="\$(shell locale charmap | \ - \$(AWK) '/\=/ { print \$\$3;} !/\=/ { print \$\$1;}')" + \$(AWK) '/=/ { print \$\$3;} !/=/ { print \$\$1;}')" FORCED_FINAL_ENCODING=0 else FINAL_ENCODING="$enable_final_encoding" @@ -326,7 +326,7 @@ else fi], [ FORCED_FINAL_ENCODING=0 FINAL_ENCODING="\$(shell locale charmap | \ - \$(AWK) '/\=/ { print \$\$3;} !/\=/ { print \$\$1;}')"]) + \$(AWK) '/=/ { print \$\$3;} !/=/ { print \$\$1;}')"]) AC_ARG_ENABLE(tex, [ --enable-tex provide the TeX support [[default=guessed]]], [ @@ -491,10 +491,6 @@ if test ! -d "$srcdir"/tools/$NCURSES; t for i in $(ls ../$NCURSES*.patch.gz); do echo Applying patch $i && \ 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); fi if test ! -d "$srcdir"/tools/$READLINE; then @@ -508,6 +504,7 @@ fi if test ! -d "$srcdir"/tools/$GSL; then gunzip -c "$srcdir"/tools/$GSL.tar.gz | \ (cd "$srcdir/tools" && tar -xf -) + (cd "$srcdir"/tools/$GSL && ./autogen.sh) if test $(uname) = "OS/2"; then (cd "$srcdir"/tools/$GSL; \ TMP=$(mktemp tmp.XXXXXXXXXX); \ @@ -518,6 +515,7 @@ fi if test ! -d "$srcdir"/tools/$GPP; then gunzip -c "$srcdir"/tools/$GPP.tar.gz | \ (cd "$srcdir/tools" && tar -xf -) + (cd "$srcdir"/tools/$GPP && autoreconf -i) fi if test ! -d "$srcdir"/tools/$FILE; then gunzip -c "$srcdir"/tools/$FILE.tar.gz | \ @@ -569,15 +567,12 @@ 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 gunzip -c "$srcdir"/rplcas/$NTL.tar.gz | \ (cd rplcas && tar -xf -) 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 gunzip -c "$srcdir"/rplcas/$PARI.tar.gz | \ (cd rplcas && tar -xf -) @@ -1356,8 +1351,8 @@ 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" +dnl ac_configure_args="$ac_configure_args \ +dnl --with-abi-version=5.9 --with-rel-version=5.9" case $OS in OS2) @@ -1457,7 +1452,6 @@ AC_SUBST(GMP) AC_SUBST(MPFR) AC_SUBST(MPFI) AC_SUBST(NTL) -AC_SUBST(COCOA) AC_SUBST(PARI) AC_SUBST(GIAC) AC_SUBST(INCMOTIF)