From: Jeff Trawick Date: Thu, 4 Apr 2002 12:51:58 +0000 (+0000) Subject: AIX: Fix the syntax for setting the LDR_CNTRL and AIXTHREAD_SCOPE X-Git-Tag: 2.0.35~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa9164357a81b582cf74cdf0df9a3877f1142678;p=apache AIX: Fix the syntax for setting the LDR_CNTRL and AIXTHREAD_SCOPE environment variables in the envvars file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94432 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index ebd7ccb7d8..00e0c40e57 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.35 + *) AIX: Fix the syntax for setting the LDR_CNTRL and AIXTHREAD_SCOPE + environment variables in the envvars file. [Jeff Trawick] + *) worker MPM: Don't create a listener thread until we have a worker thread. Otherwise, in situations where we'll have to wait a while to take over scoreboard slots from a previous generation, we'll be diff --git a/configure.in b/configure.in index 9983cb9557..d50d452407 100644 --- a/configure.in +++ b/configure.in @@ -273,9 +273,9 @@ case $host in *aix*) # for 32-bit builds, increase MAXDATA to allow lots of threads if test x$OBJECT_MODE != x64; then - OS_SPECIFIC_VARS="set LDR_CNTRL=\"MAXDATA=0x80000000\" ; export LDR_CNTRL ;" + OS_SPECIFIC_VARS="LDR_CNTRL=\"MAXDATA=0x80000000\" ; export LDR_CNTRL ;" fi - OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS set AIXTHREAD_SCOPE=S ; export AIXTHREAD_SCOPE" + OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS AIXTHREAD_SCOPE=S ; export AIXTHREAD_SCOPE" ;; *os390*) OS_SPECIFIC_VARS="export _CEE_RUNOPTS=\"STACK(,,ANY)\" ; export _EDC_ADD_ERRNO2=1"