diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | README_d/ChangeLog | 4 | ||||
-rw-r--r-- | README_d/README.macosx | 17 | ||||
-rwxr-xr-x | configure | 10 | ||||
-rw-r--r-- | configure.ac | 12 | ||||
-rw-r--r-- | extension/ChangeLog | 6 | ||||
-rwxr-xr-x | extension/configure | 10 | ||||
-rw-r--r-- | extension/configure.ac | 10 |
8 files changed, 33 insertions, 42 deletions
@@ -1,3 +1,9 @@ +2018-02-21 Arnold D. Robbins <arnold@skeeve.com> + + * configure.ac: Remove checking for PPC Macintosh before + checking for MPFR. Installing a newer compiler on that + system allows things to work. + 2018-02-19 Arnold D. Robbins <arnold@skeeve.com> * gawkapi.h, io.c, msg.c: Update copyright year. diff --git a/README_d/ChangeLog b/README_d/ChangeLog index 36ae2afa..0e18772f 100644 --- a/README_d/ChangeLog +++ b/README_d/ChangeLog @@ -1,3 +1,7 @@ +2018-02-21 Arnold D. Robbins <arnold@skeeve.com> + + * README.macosx: Updated. + 2018-02-04 Arnold D. Robbins <arnold@skeeve.com> * README.macosx: Updated. diff --git a/README_d/README.macosx b/README_d/README.macosx index 11f10cb6..008964e2 100644 --- a/README_d/README.macosx +++ b/README_d/README.macosx @@ -1,3 +1,11 @@ +Wed Feb 21 06:59:28 IST 2018 +============================ + +On PowerPC Macintosh, if you build GCC 4.2.4 and use that version of GCC, +you can compile gawk with MPFR and the C99 settings. So I have restored +the MPFR check for that system. Right now the two readfile tests fail +on that system; I may not let that block the release of 4.2.1. + Thu Jan 25 20:07:56 IST 2018 ============================ @@ -5,15 +13,6 @@ You may need to explicitly tell configure where to find the GNU gettext header file and library with --with-libintl-prefix=...'. Otherwise, the nlstringtest test will fail. -Fri Dec 23 13:42:58 IST 2016 -============================ - -If anyone besides me still has a PowerPC Macintosh, it's no longer -possible to build gawk using MPFR. C99 and the last version of MPFR -that works on that platform don't get along, and I could not solve -the problem. So I simply disabled the MPFR check in configure.ac on -that platform. - Mon Apr 13 09:49:40 IDT 2015 ============================ @@ -10530,12 +10530,8 @@ fi fi -case `uname -m` in -*'Power Macintosh'*) - : ;; -*) - case $SKIP_MPFR in - no) +case $SKIP_MPFR in +no) # Check whether --with-mpfr was given. if test "${with_mpfr+set}" = set; then : @@ -10609,8 +10605,6 @@ $as_echo "#define HAVE_MPFR 1" >>confdefs.h unset _found_mpfr fi - ;; - esac ;; esac diff --git a/configure.ac b/configure.ac index fd7b73ae..a1c68c7e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl dnl configure.ac --- autoconf input file for gawk dnl -dnl Copyright (C) 1995-2017 the Free Software Foundation, Inc. +dnl Copyright (C) 1995-2018 the Free Software Foundation, Inc. dnl dnl This file is part of GAWK, the GNU implementation of the dnl AWK Programming Language. @@ -386,14 +386,8 @@ dnl check for readline support GAWK_CHECK_READLINE dnl check for mpfr support -case `uname -m` in -*'Power Macintosh'*) - : ;; -*) - case $SKIP_MPFR in - no) GNUPG_CHECK_MPFR - ;; - esac +case $SKIP_MPFR in +no) GNUPG_CHECK_MPFR ;; esac diff --git a/extension/ChangeLog b/extension/ChangeLog index 0b09032d..a6a894ca 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,9 @@ +2018-02-21 Arnold D. Robbins <arnold@skeeve.com> + + * configure.ac: Remove checking for PPC Macintosh before + checking for MPFR. Installing a newer compiler on that + system allows things to work. + 2018-02-17 Michal Jaegermann <michal.jnn@gmail.com>. * filefuncs.3am, filefuncs.c, fnmatch.3am, revoutput.3am, diff --git a/extension/configure b/extension/configure index 3bdccfc0..4ea8d3f8 100755 --- a/extension/configure +++ b/extension/configure @@ -15074,12 +15074,8 @@ $as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h fi -case `uname -m` in -*'Power Macintosh'*) - : ;; -*) - case $SKIP_MPFR in - no) +case $SKIP_MPFR in +no) # Check whether --with-mpfr was given. if test "${with_mpfr+set}" = set; then : @@ -15153,8 +15149,6 @@ $as_echo "#define HAVE_MPFR 1" >>confdefs.h unset _found_mpfr fi - ;; - esac ;; esac diff --git a/extension/configure.ac b/extension/configure.ac index 8d44e2b2..b8738b67 100644 --- a/extension/configure.ac +++ b/extension/configure.ac @@ -101,14 +101,8 @@ dnl AC_HEADER_MAJOR AC_HEADER_TIME dnl check for mpfr support -case `uname -m` in -*'Power Macintosh'*) - : ;; -*) - case $SKIP_MPFR in - no) GNUPG_CHECK_MPFR - ;; - esac +case $SKIP_MPFR in +no) GNUPG_CHECK_MPFR ;; esac |