From: Jeff Trawick Date: Thu, 7 Mar 2002 00:23:30 +0000 (+0000) Subject: 64-bit build on AIX: X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c48335ae6c4c44b119d3ec409c5d89a6bf2801c2;p=apache 64-bit build on AIX: 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 --- diff --git a/configure.in b/configure.in index 7091b62770..8a74ec2946 100644 --- a/configure.in +++ b/configure.in @@ -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"