aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-02-23 10:42:55 +0200
committerArnold D. Robbins <arnold@skeeve.com>2018-02-23 10:42:55 +0200
commita0753d1e2b362e9e6b4ea35ff6135505758521f6 (patch)
treecf8ba0f405d231fa9ce0c4b80f3f7c10cadd2ee0 /configure.ac
parent4a4c35ecc8cedd1189220d0d1044cd2b35c108a2 (diff)
parent9b1151d32d047649e2a6a1f601aa8163ebe3e8e9 (diff)
downloadegawk-a0753d1e2b362e9e6b4ea35ff6135505758521f6.tar.gz
egawk-a0753d1e2b362e9e6b4ea35ff6135505758521f6.tar.bz2
egawk-a0753d1e2b362e9e6b4ea35ff6135505758521f6.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 9 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index a1c68c7e..fd7b73ae 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-2018 the Free Software Foundation, Inc.
+dnl Copyright (C) 1995-2017 the Free Software Foundation, Inc.
dnl
dnl This file is part of GAWK, the GNU implementation of the
dnl AWK Programming Language.
@@ -386,8 +386,14 @@ dnl check for readline support
GAWK_CHECK_READLINE
dnl check for mpfr support
-case $SKIP_MPFR in
-no) GNUPG_CHECK_MPFR
+case `uname -m` in
+*'Power Macintosh'*)
+ : ;;
+*)
+ case $SKIP_MPFR in
+ no) GNUPG_CHECK_MPFR
+ ;;
+ esac
;;
esac