summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2002-01-10 04:55:19 +0000
committerDoug MacEachern <dougm@apache.org>2002-01-10 04:55:19 +0000
commitc53456b4c121f8727c7fc6fc5dbce623db7adb84 (patch)
tree27e4c554601f9336b34710c693063de9eca298ae /acinclude.m4
parent71de760992e3a000f7798904eafd08eea24aa26b (diff)
downloadhttpd-c53456b4c121f8727c7fc6fc5dbce623db7adb84.tar.gz
mod_ssl adjustments to help with using toolkits other than OpenSSL:
Use SSL functions/macros instead of directly dereferencing SSL structures wherever possible. Add type-casts for the cases where functions return a generic pointer. Add $SSL/include to configure search path. PR: Obtained from: Submitted by: Madhusudan Mathihalli <madhusudan_mathihalli@hp.com> Reviewed by: dougm git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92800 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m43
1 files changed, 3 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index bda7b56b91..dc47ddc01b 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -451,6 +451,9 @@ if test "x$ap_ssltk_base" = "x"; then
if test -f "$p/openssl/ssl.h"; then
ap_ssltk_incdir="$p"
break
+ elif test -f "$p/ssl.h"; then
+ ap_ssltk_incdir="$p"
+ break
fi
done
if test "x$ap_ssltk_incdir" = "x"; then