diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2008-02-06 22:29:22 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2008-02-06 22:29:22 +0000 |
commit | 32b164aacdbd6b41a7bfb881d9a53a4ef63d5c7c (patch) | |
tree | 3621cd69c8773893602a967a2f6d99de6169c570 | |
parent | 4a19ed04528750e7764837494dea39556aca09f8 (diff) | |
download | guile-32b164aacdbd6b41a7bfb881d9a53a4ef63d5c7c.tar.gz |
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.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2008-02-06 Neil Jerram <neil@ossau.uklinux.net> + + * 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 <ludo@gnu.org> * 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 |