]> granicus.if.org Git - apache/commitdiff
64-bit build on AIX:
authorJeff Trawick <trawick@apache.org>
Thu, 7 Mar 2002 00:23:30 +0000 (00:23 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 7 Mar 2002 00:23:30 +0000 (00:23 +0000)
  fix major bogosity in the logic to avoid setting LDR_CNTRL=MAXDATA=xxx
  for a 64-bit build...  the name of the environment variable was wrong
  and even the test usage was bogus

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93743 13f79535-47bb-0310-9956-ffa450edef68

configure.in

index 7091b6277013a5427bc1e9889d875ca5697eb530..8a74ec29463606e19affbfac222eaf0298eadd53 100644 (file)
@@ -260,7 +260,7 @@ dnl ## Set up any appropriate OS-specific environment variables for apachectl
 case $host in
     *aix*)
         # for 32-bit builds, increase MAXDATA to allow lots of threads
-        if test x$COMPILE_MODE != 64; then
+        if test x$OBJECT_MODE != x64; then
             OS_SPECIFIC_VARS="set LDR_CNTRL=\"MAXDATA=0x80000000\" ; export LDR_CNTRL ;"
         fi
         OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS set AIXTHREAD_SCOPE=S ; export AIXTHREAD_SCOPE"