aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-02-23 10:41:31 +0200
committerArnold D. Robbins <arnold@skeeve.com>2018-02-23 10:41:31 +0200
commit1fccd6a693c301926cb5153e06d1017326968894 (patch)
treec53db2d0dc6aca1ef9ce31eed503fc7919b3a327 /configure.ac
parentc6242c988141367a8acb7db7171ff08afc521eec (diff)
downloadegawk-1fccd6a693c301926cb5153e06d1017326968894.tar.gz
egawk-1fccd6a693c301926cb5153e06d1017326968894.tar.bz2
egawk-1fccd6a693c301926cb5153e06d1017326968894.zip
Restore PowerPC mac to not build MPFR.
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 32a860ec..14faf0c8 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.
@@ -402,8 +402,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