diff options
author | Roy T. Fielding <fielding@apache.org> | 2001-05-11 20:18:04 +0200 |
---|---|---|
committer | Roy T. Fielding <fielding@apache.org> | 2001-05-11 20:18:04 +0200 |
commit | f0fc04112f1c30bc50647ed7beb64c1f6f7c1a54 (patch) | |
tree | 9a37f262b98b0d697b79beb04565fd098514bcbc /acinclude.m4 | |
parent | Do not send apr_file_t allocated out of the pconf pool down the (diff) | |
download | apache2-f0fc04112f1c30bc50647ed7beb64c1f6f7c1a54.tar.xz apache2-f0fc04112f1c30bc50647ed7beb64c1f6f7c1a54.zip |
The pattern was too general -- it would match the date within the
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
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 03ae0557c0..bdc2be50c1 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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 ;; |