From 97f48d118501b8799a7a131731a70229cba4f48b Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 7 Mar 2002 00:23:30 +0000 Subject: [PATCH] 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 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.50.1