From: Neil Jerram Date: Wed, 6 Feb 2008 22:29:22 +0000 (+0000) Subject: Default to --without-64-calls for X-Git-Url: https://git.hcoop.net/bpt/guile.git/commitdiff_plain/32b164aacdbd6b41a7bfb881d9a53a4ef63d5c7c Default to --without-64-calls for powerpc-ibm-aix*. Thanks to Rainer Tammer for reporting that the 64 calls are a problem on that OS. --- diff --git a/ChangeLog b/ChangeLog index 959d0ccde..1addbd8e8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-02-06 Neil Jerram + + * configure.in: Default to --without-64-calls for + powerpc-ibm-aix*. Thanks to Rainer Tammer for reporting that the + 64 calls are a problem on that OS. + 2008-02-06 Ludovic Courtès * NEWS: Mention Sun Studio compilation fix. diff --git a/configure.in b/configure.in index d7abfb427..392b3ae5c 100644 --- a/configure.in +++ b/configure.in @@ -205,6 +205,9 @@ AC_ARG_WITH([64-calls], *-apple-darwin* ) use_64_calls=no ;; + powerpc-ibm-aix* ) + use_64_calls=no + ;; esac]) echo "use_64_calls=$use_64_calls" case "$use_64_calls" in