[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. f69ed9061421a142ddcb8ee
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. f69ed9061421a142ddcb8ee1a2b8203c3e76fc11 |
Date: |
Wed, 21 Feb 2018 00:46:01 -0500 (EST) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, master has been updated
from 6f3f928f8fa4738cbc878bbe2b5dbcbc1fc63e44 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=f69ed9061421a142ddcb8ee1a2b8203c3e76fc11
commit f69ed9061421a142ddcb8ee1a2b8203c3e76fc11
Merge: 6f3f928 c6242c9
Author: Arnold D. Robbins <address@hidden>
Date: Wed Feb 21 07:33:38 2018 +0200
Merge branch 'gawk-4.2-stable'
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=c6242c988141367a8acb7db7171ff08afc521eec
commit c6242c988141367a8acb7db7171ff08afc521eec
Author: Arnold D. Robbins <address@hidden>
Date: Wed Feb 21 07:02:08 2018 +0200
Restore MPFR compilation on PowerPC Macintosh.
diff --git a/ChangeLog b/ChangeLog
index 4f5c1d1..de65d80 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-02-21 Arnold D. Robbins <address@hidden>
+
+ * 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 <address@hidden>
* gawkapi.h, io.c, msg.c: Update copyright year.
diff --git a/README_d/ChangeLog b/README_d/ChangeLog
index 36ae2af..0e18772 100644
--- a/README_d/ChangeLog
+++ b/README_d/ChangeLog
@@ -1,3 +1,7 @@
+2018-02-21 Arnold D. Robbins <address@hidden>
+
+ * README.macosx: Updated.
+
2018-02-04 Arnold D. Robbins <address@hidden>
* README.macosx: Updated.
diff --git a/README_d/README.macosx b/README_d/README.macosx
index 11f10cb..008964e 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
============================
diff --git a/configure b/configure
index 1aca363..285fd3f 100755
--- a/configure
+++ b/configure
@@ -10560,12 +10560,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 :
@@ -10639,8 +10635,6 @@ $as_echo "#define HAVE_MPFR 1" >>confdefs.h
unset _found_mpfr
fi
- ;;
- esac
;;
esac
diff --git a/configure.ac b/configure.ac
index 14faf0c..32a860e 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.
@@ -402,14 +402,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 f4db473..c3d3829 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,3 +1,9 @@
+2018-02-21 Arnold D. Robbins <address@hidden>
+
+ * 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 <address@hidden>.
* filefuncs.3am, filefuncs.c, fnmatch.3am, revoutput.3am,
diff --git a/extension/configure b/extension/configure
index 3bdccfc..4ea8d3f 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 8d44e2b..b8738b6 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
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
README_d/ChangeLog | 4 ++++
README_d/README.macosx | 17 ++++++++---------
configure | 10 ++--------
configure.ac | 12 +++---------
extension/ChangeLog | 6 ++++++
extension/configure | 10 ++--------
extension/configure.ac | 10 ++--------
8 files changed, 33 insertions(+), 42 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. f69ed9061421a142ddcb8ee1a2b8203c3e76fc11,
Arnold Robbins <=