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/03/07 01:23:30 UTC

cvs commit: httpd-2.0 configure.in

trawick     02/03/06 16:23:30

  Modified:    .        configure.in
  Log:
  64-bit build on AIX:
    fix major bogosity in the logic to avoid setting LDR_CNTRL=MAXDATA=xxx
    for a 64-bit build...  the name of the environment variable was wrong
    and even the test usage was bogus
  
  Revision  Changes    Path
  1.207     +1 -1      httpd-2.0/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/configure.in,v
  retrieving revision 1.206
  retrieving revision 1.207
  diff -u -r1.206 -r1.207
  --- configure.in	6 Mar 2002 18:48:22 -0000	1.206
  +++ configure.in	7 Mar 2002 00:23:30 -0000	1.207
  @@ -260,7 +260,7 @@
   case $host in
       *aix*)
           # for 32-bit builds, increase MAXDATA to allow lots of threads
  -        if test x$COMPILE_MODE != 64; then
  +        if test x$OBJECT_MODE != x64; then
               OS_SPECIFIC_VARS="set LDR_CNTRL=\"MAXDATA=0x80000000\" ; export LDR_CNTRL ;"
           fi
           OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS set AIXTHREAD_SCOPE=S ; export AIXTHREAD_SCOPE"