diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-07-19 22:16:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-07-19 22:16:50 +0000 |
commit | 194141a9b87dcacd3f896400eab8b0549db5a12e (patch) | |
tree | 1af6a16fb08585f2b5e835e07502b1c7e8e9e203 /bfd/configure.in | |
parent | bb5a10fef4e25b1a0c4f1158a93a441234907b24 (diff) | |
download | gdb-194141a9b87dcacd3f896400eab8b0549db5a12e.zip gdb-194141a9b87dcacd3f896400eab8b0549db5a12e.tar.gz gdb-194141a9b87dcacd3f896400eab8b0549db5a12e.tar.bz2 |
* configure.in: Fix test for whether a compiler has a 64 bit
type. From Jim Wilson <wilson@cygnus.com>.
VS: ----------------------------------------------------------------------
Diffstat (limited to 'bfd/configure.in')
-rw-r--r-- | bfd/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/configure.in b/bfd/configure.in index 20a67ad..2f91884 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -580,7 +580,7 @@ case ${host64}-${target64}-${want64} in *true*) wordsize=64 all_backends='$(BFD64_BACKENDS) $(BFD32_BACKENDS)' - if test -z "$GCC" && test "$HOST_64BIT_LONG" = "0"; then + if test -z "$GCC" && test "$BFD_HOST_64BIT_LONG" = "0" && test "$BFD_HOST_64_BIT_DEFINED" = "0"; then AC_MSG_WARN([You have requested a 64 bit BFD configuration, but]) AC_MSG_WARN([your compiler may not have a 64 bit integral type]) fi |