1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-19 10:10:23 +02:00

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.
This commit is contained in:
Neil Jerram 2008-02-06 22:27:59 +00:00
parent c14bb7ad22
commit 3d02a866a9
2 changed files with 9 additions and 0 deletions

View file

@ -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> 2008-02-06 Ludovic Courtès <ludo@gnu.org>
* NEWS: Mention Sun Studio compilation fix. * NEWS: Mention Sun Studio compilation fix.

View file

@ -205,6 +205,9 @@ AC_ARG_WITH([64-calls],
*-apple-darwin* ) *-apple-darwin* )
use_64_calls=no use_64_calls=no
;; ;;
powerpc-ibm-aix* )
use_64_calls=no
;;
esac]) esac])
echo "use_64_calls=$use_64_calls" echo "use_64_calls=$use_64_calls"
case "$use_64_calls" in case "$use_64_calls" in