environment variables in the envvars file.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94432
13f79535-47bb-0310-9956-
ffa450edef68
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
*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"