From f0fc04112f1c30bc50647ed7beb64c1f6f7c1a54 Mon Sep 17 00:00:00 2001 From: "Roy T. Fielding" Date: Fri, 11 May 2001 18:18:04 +0000 Subject: [PATCH] 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 --- acinclude.m4 | 6 +++--- 1 file 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 ;; -- 2.50.1