]> granicus.if.org Git - apache/commitdiff
the TCP guy in Austin (AIX-land) swears that 4.3.2 GA had the fix for
authorJeff Trawick <trawick@apache.org>
Fri, 14 Jun 2002 17:49:28 +0000 (17:49 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 14 Jun 2002 17:49:28 +0000 (17:49 +0000)
thundering herd, so tweak the prior change just a bit

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95677 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
configure.in

diff --git a/CHANGES b/CHANGES
index 40399b1290ca4d1d5f670309b373274e01bc1557..833ee8d2f06eb9a6c65f261cbfd4e3f5c30c7953 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,6 @@
 Changes with Apache 2.0.38
 
-  *) AIX 4.3.3 and above: Define SINGLE_LISTEN_UNSERIALIZED_ACCEPT.
+  *) AIX 4.3.2 and above: Define SINGLE_LISTEN_UNSERIALIZED_ACCEPT.
      These levels of AIX don't have a thundering herd problem with
      accept().  [Jeff Trawick]
 
index f2d66df25fbcdc0d2d06a1983eb136cf1e65015a..dbdc3942e851e99e0f625bbb7409a61a51636846 100644 (file)
@@ -210,7 +210,7 @@ case $host in
       ;;
   *aix*)
       aixver=`echo $host | sed 's/^[[^0-9]]*//' | sed 's/\.//g'`
-      if test $aixver -ge 4330; then
+      if test $aixver -ge 4320; then
         APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
       fi
       ;;