diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-02-21 07:02:08 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-02-21 07:02:08 +0200 |
commit | c6242c988141367a8acb7db7171ff08afc521eec (patch) | |
tree | bb603cd07f2e3f124d1e72acb5265606774feeb8 /configure.ac | |
parent | a7db2037c7e6ccd7ea4a10e01f7455f79c4d6b67 (diff) | |
download | egawk-c6242c988141367a8acb7db7171ff08afc521eec.tar.gz egawk-c6242c988141367a8acb7db7171ff08afc521eec.tar.bz2 egawk-c6242c988141367a8acb7db7171ff08afc521eec.zip |
Restore MPFR compilation on PowerPC Macintosh.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac index 14faf0c8..32a860ec 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 |