diff options
author | Ryan Bloom <rbb@apache.org> | 2001-08-21 00:30:17 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-08-21 00:30:17 +0200 |
commit | 9d9bf07bd2f83300c8aaf8d2a887849ae2f75b19 (patch) | |
tree | 8484c45e3caac85fc885f26cc0ebd3138af6ed96 /acinclude.m4 | |
parent | Going back a bit too far, fix the cwd (diff) | |
download | apache2-9d9bf07bd2f83300c8aaf8d2a887849ae2f75b19.tar.xz apache2-9d9bf07bd2f83300c8aaf8d2a887849ae2f75b19.zip |
Add the openssl/include/openssl directory to the INCLUDES variable.
This allows us to remove the openssl from the #include lines in the
mod_ssl files. This makes it easier to use a different SSL library,
with fewer changes to the mod_ssl files.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90435 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 217db3bdf6..92ecdb7dbe 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -468,7 +468,7 @@ if test "x$ap_ssltk_base" = "x"; then dnl # annotate the Apache build environment with determined information if test "x$ap_ssltk_incdir" != "x/usr/include"; then - APR_ADDTO(INCLUDES, [-I$ap_ssltk_incdir]) + APR_ADDTO(INCLUDES, [-I$ap_ssltk_incdir -I$ap_ssltk_incdir/openssl]) fi if test "x$ap_ssltk_libdir" != "x/usr/lib"; then APR_ADDTO(LIBS, [-L$ap_ssltk_libdir]) |