diff options
author | Ian Holsman <ianh@apache.org> | 2002-03-16 07:35:11 +0100 |
---|---|---|
committer | Ian Holsman <ianh@apache.org> | 2002-03-16 07:35:11 +0100 |
commit | ba2d76faa1e5dc500fdcf2bda28fba59386bac5c (patch) | |
tree | 815ed33ea46fca4a2e428346dd31a932477df3c7 /configure.in | |
parent | make sure we set rc before referencing it (diff) | |
download | apache2-ba2d76faa1e5dc500fdcf2bda28fba59386bac5c.tar.xz apache2-ba2d76faa1e5dc500fdcf2bda28fba59386bac5c.zip |
Solaris 8 doesn't have a thundering herd problem
according to the sun experts
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 038d45c301..a8e74c72f0 100644 --- a/configure.in +++ b/configure.in @@ -170,8 +170,17 @@ case $host in 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]) |