diff options
author | Rainer Jung <rjung@apache.org> | 2015-01-19 13:22:34 +0100 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2015-01-19 13:22:34 +0100 |
commit | df2e9f3ba4295ab717c9da3103111ec192479bcf (patch) | |
tree | f8f5d6c45079345ce2ca3bd2e7acf1c7950e1b44 /configure.in | |
parent | PR 57379: If mod_cgi and mod_cgid get installed, (diff) | |
download | apache2-df2e9f3ba4295ab717c9da3103111ec192479bcf.tar.xz apache2-df2e9f3ba4295ab717c9da3103111ec192479bcf.zip |
Fix detection of old Solaris versions.
Autotools need double square brackets.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1652982 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 931770312c..2dce84e959 100644 --- a/configure.in +++ b/configure.in @@ -358,7 +358,7 @@ case $host in 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]*) + 5.[[567]]*) ;; * ) APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1]) |