From: Justin Erenkrantz Date: Mon, 9 Sep 2002 21:37:57 +0000 (+0000) Subject: Update OpenSSL detection to work on Darwin. X-Git-Tag: AGB_BEFORE_AAA_CHANGES~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4aae1d59959494cc89cdaf0f0ee0b6e23f47d874;p=thirdparty%2Fapache%2Fhttpd.git Update OpenSSL detection to work on Darwin. Submitted by: Sander Temme Reviewed by: Dirk, Justin git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96726 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index a4773a25945..dcc8bda7236 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.41 + *) Update OpenSSL detection to work on Darwin. + [Sander Temme ] + *) Update the xslt and css to give the documentation a more modern style. [André Malo , Gernot Winkler ] diff --git a/acinclude.m4 b/acinclude.m4 index 9d94a521d92..ed3964886fc 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -461,7 +461,7 @@ if test "x$ap_ssltk_base" = "x"; then ap_ssltk_libdir="" for p in $ap_ssltk_base/lib /usr/local/openssl/lib \ /usr/local/ssl/lib /usr/local/lib /usr/lib /lib /usr/lib64; do - if test -f "$p/libssl.a" -o -f "$p/libssl.so"; then + if test -f "$p/libssl.a" -o -f "$p/libssl.so" -o -f "$p/libssl.dylib"; then ap_ssltk_libdir="$p" break fi