You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/04/04 14:51:59 UTC

cvs commit: httpd-2.0 CHANGES configure.in

trawick     02/04/04 04:51:59

  Modified:    .        CHANGES configure.in
  Log:
  AIX: Fix the syntax for setting the LDR_CNTRL and AIXTHREAD_SCOPE
       environment variables in the envvars file.
  
  Revision  Changes    Path
  1.681     +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.680
  retrieving revision 1.681
  diff -u -r1.680 -r1.681
  --- CHANGES	3 Apr 2002 15:47:59 -0000	1.680
  +++ CHANGES	4 Apr 2002 12:51:58 -0000	1.681
  @@ -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
  
  
  
  1.213     +2 -2      httpd-2.0/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/configure.in,v
  retrieving revision 1.212
  retrieving revision 1.213
  diff -u -r1.212 -r1.213
  --- configure.in	4 Apr 2002 09:15:43 -0000	1.212
  +++ configure.in	4 Apr 2002 12:51:58 -0000	1.213
  @@ -273,9 +273,9 @@
       *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"