aboutsummaryrefslogtreecommitdiffstats
path: root/configure
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
parentc6242c988141367a8acb7db7171ff08afc521eec (diff)
downloadegawk-1fccd6a693c301926cb5153e06d1017326968894.tar.gz
egawk-1fccd6a693c301926cb5153e06d1017326968894.tar.bz2
egawk-1fccd6a693c301926cb5153e06d1017326968894.zip
Restore PowerPC mac to not build MPFR.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 8 insertions, 2 deletions
diff --git a/configure b/configure
index 285fd3f0..1aca363a 100755
--- a/configure
+++ b/configure
@@ -10560,8 +10560,12 @@ fi
fi
-case $SKIP_MPFR in
-no)
+case `uname -m` in
+*'Power Macintosh'*)
+ : ;;
+*)
+ case $SKIP_MPFR in
+ no)
# Check whether --with-mpfr was given.
if test "${with_mpfr+set}" = set; then :
@@ -10635,6 +10639,8 @@ $as_echo "#define HAVE_MPFR 1" >>confdefs.h
unset _found_mpfr
fi
+ ;;
+ esac
;;
esac