]> granicus.if.org Git - apache/commitdiff
AIX: Fix the syntax for setting the LDR_CNTRL and AIXTHREAD_SCOPE
authorJeff Trawick <trawick@apache.org>
Thu, 4 Apr 2002 12:51:58 +0000 (12:51 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 4 Apr 2002 12:51:58 +0000 (12:51 +0000)
     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
configure.in

diff --git a/CHANGES b/CHANGES
index ebd7ccb7d819353828043c9ed3bf1f1dc1168995..00e0c40e5760e99b2bc2598714d01a9616b6ea97 100644 (file)
--- 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
index 9983cb955771fa8862ef68aa58b8c684beee95f0..d50d452407fc9eb959bdabd871b3d2fcc21affcd 100644 (file)
@@ -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"