correct AIX-4 64-bit mode detection
authorJeff Hobbs <hobbs@users.sourceforge.net>
Wed, 16 Oct 2002 07:05:00 +0000 (07:05 +0000)
committerJeff Hobbs <hobbs@users.sourceforge.net>
Wed, 16 Oct 2002 07:05:00 +0000 (07:05 +0000)
configure
tclconfig/tcl.m4

index ac7f754f51170a79233265a895df8496e171ff44..f8686ce1b4e8b9fd25d0be388ae4f4d28f242a69 100755 (executable)
--- a/configure
+++ b/configure
@@ -2233,7 +2233,7 @@ EOF
            fi
 
            # Check to enable 64-bit flags for compiler/linker on AIX 4+
-           if test "$do64bit" = "yes" -o "`uname -v`" -gt "3" ; then
+           if test "$do64bit" = "yes" -a "`uname -v`" -gt "3" ; then
                if test "$GCC" = "yes" ; then
                    echo "configure: warning: "64bit mode not supported with GCC on $system"" 1>&2
                else 
index 038e32c5cf0d7bd8670f89ab0426a9add22f47d5..d2421cfb11d5626d61ed394a8145dabecfb723b2 100644 (file)
@@ -925,7 +925,7 @@ dnl AC_CHECK_TOOL(AR, ar, :)
            fi
 
            # Check to enable 64-bit flags for compiler/linker on AIX 4+
-           if test "$do64bit" = "yes" -o "`uname -v`" -gt "3" ; then
+           if test "$do64bit" = "yes" -a "`uname -v`" -gt "3" ; then
                if test "$GCC" = "yes" ; then
                    AC_MSG_WARN("64bit mode not supported with GCC on $system")
                else