]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Add the openssl/include/openssl directory to the INCLUDES variable.
authorRyan Bloom <rbb@apache.org>
Mon, 20 Aug 2001 22:30:17 +0000 (22:30 +0000)
committerRyan Bloom <rbb@apache.org>
Mon, 20 Aug 2001 22:30:17 +0000 (22:30 +0000)
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/modules/ssl@90435 13f79535-47bb-0310-9956-ffa450edef68

mod_ssl.h

index bb3739f474a2755fd6dee5d1bb6ea7551209fde7..3e72fc19d81d2bc8424b61f5531ae0097d0a8928 100644 (file)
--- a/mod_ssl.h
+++ b/mod_ssl.h
 #include <assert.h>
 
 /* OpenSSL headers */
-#include <openssl/ssl.h>
-#include <openssl/err.h>
-#include <openssl/x509.h>
-#include <openssl/x509v3.h>
-#include <openssl/pem.h>
-#include <openssl/crypto.h>
-#include <openssl/evp.h>
-#include <openssl/rand.h>
+#include <ssl.h>
+#include <err.h>
+#include <x509.h>
+#include <x509v3.h>
+#include <pem.h>
+#include <crypto.h>
+#include <evp.h>
+#include <rand.h>
 #ifdef SSL_EXPERIMENTAL_ENGINE
-#include <openssl/engine.h>
+#include <engine.h>
 #endif
 
 /* Apache headers */