You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ia...@apache.org on 2002/03/16 07:35:11 UTC

cvs commit: httpd-2.0 configure.in CHANGES

ianh        02/03/15 22:35:11

  Modified:    .        configure.in CHANGES
  Log:
  Solaris 8 doesn't have a thundering herd problem
  according to the sun experts
  
  Revision  Changes    Path
  1.210     +10 -1     httpd-2.0/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/configure.in,v
  retrieving revision 1.209
  retrieving revision 1.210
  diff -u -r1.209 -r1.210
  --- configure.in	9 Mar 2002 19:29:18 -0000	1.209
  +++ configure.in	16 Mar 2002 06:35:11 -0000	1.210
  @@ -170,8 +170,17 @@
         APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
         ;;
     *-solaris2*)
  -      dnl  This is a hack -- we should be using AC_TRY_RUN instead
  +      dnl This is a hack -- we should be using AC_TRY_RUN instead
         ap_platform_runtime_link_flag="-R"
  +      dnl solaris 8 and above don't have a thundering herd
  +      dnl not sure about rev's before this one.
  +      case `uname -r` in
  +        5.[567]*)
  +            ;;
  +        * )
  +            APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
  +            ;;
  +      esac
         ;;
     *cygwin*)
         APR_SETVAR(APACHE_MPM, [prefork])
  
  
  
  1.637     +5 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.636
  retrieving revision 1.637
  diff -u -r1.636 -r1.637
  --- CHANGES	15 Mar 2002 13:35:42 -0000	1.636
  +++ CHANGES	16 Mar 2002 06:35:11 -0000	1.637
  @@ -1,5 +1,10 @@
   Changes with Apache 2.0.34-dev
   
  +  *) Change configure so that Solaris 8 and above have 
  +     SINGLE_LISTEN_UNSERIALIZED_ACCEPT defined by default.
  +     according to sun people solaris 8+ doesn't have a thundering
  +     herd problem [Ian Holsman]
  +
     *) Allow URIs specifying CGI scripts to include '/' at the end
        (e.g., /cgi-bin/printenv/) on AIX and Solaris (and other OSs
        which ignore '/' at the end of the names of non-directories).