]> granicus.if.org Git - apache/commitdiff
The pattern was too general -- it would match the date within the
authorRoy T. Fielding <fielding@apache.org>
Fri, 11 May 2001 18:18:04 +0000 (18:18 +0000)
committerRoy T. Fielding <fielding@apache.org>
Fri, 11 May 2001 18:18:04 +0000 (18:18 +0000)
OpenSSL version string instead of just the version number.  Fix it
using a hint from libtool.

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

acinclude.m4

index 03ae0557c0ed0ca4e23cd56f616caefc973b9680..bdc2be50c156defa3d1b1437f6b2d42f1c879edd 100644 (file)
@@ -381,9 +381,9 @@ if test "x$ap_ssltk_base" = "x"; then
       for p in $ap_ssltk_try; do
         ap_ssltk_version="`$p/openssl version`"
         case "$ap_ssltk_version" in
-            *[[!0-9a-z.]][[1-9]]* | \
-            *[[!0-9a-z.]]0.9.[[6-9]]* | \
-            *[[!0-9a-z.]]0.[[1-9]][[0-9]]* )
+            "OpenSSL "[[1-9]]* | \
+            "OpenSSL "0.9.[[6-9]]* | \
+            "OpenSSL "0.[[1-9]][[0-9]]* )
                 ap_cv_ssltk="`(cd $p/.. && pwd)`"
                 break
                 ;;