]> granicus.if.org Git - apache/commitdiff
Update OpenSSL detection to work on Darwin.
authorJustin Erenkrantz <jerenkrantz@apache.org>
Mon, 9 Sep 2002 21:37:57 +0000 (21:37 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Mon, 9 Sep 2002 21:37:57 +0000 (21:37 +0000)
Submitted by: Sander Temme <sctemme@covalent.net>
Reviewed by: Dirk, Justin

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

CHANGES
acinclude.m4

diff --git a/CHANGES b/CHANGES
index a4773a25945aca197bb2b06842c3466509175d8e..dcc8bda723686a79969a96f3ac784621ab0141f1 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
 Changes with Apache 2.0.41
 
+  *) Update OpenSSL detection to work on Darwin.
+     [Sander Temme <sctemme@covalent.net>]
+
   *) Update the xslt and css to give the documentation a more
      modern style.
      [AndrĂ© Malo <nd@perlig.de>, Gernot Winkler <greh@o3media.de>]
index 9d94a521d92f3407b993d0fd69b7eb0606c3389e..ed3964886fc2959f50a950c93b39644f464c0c7e 100644 (file)
@@ -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