Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 59367 invoked by uid 500); 4 Apr 2002 12:52:00 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 59356 invoked by uid 500); 4 Apr 2002 12:52:00 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 4 Apr 2002 12:51:59 -0000 Message-ID: <20020404125159.21673.qmail@icarus.apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0 CHANGES configure.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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"