1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-06 16:49:32 +03:00

OpenSSL should be included as "openssl/ssl.h" and not "ssl.h" (and rely on the

INCLUDE path to be defined properly)

PR: 11310
Submitted by: Geoff Thrope <geoff@geoffthrope.net>
Reviewed by: Madhusudan Mathihalli


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99008 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Madhusudan Mathihalli
2003-03-14 02:20:50 +00:00
parent 415283e60a
commit aea3ed09fb
3 changed files with 25 additions and 24 deletions

View File

@@ -55,7 +55,20 @@
* between OpenSSL and RSA sslc
*/
#ifdef OPENSSL_VERSION_NUMBER
#ifdef HAVE_OPENSSL
/* OpenSSL headers */
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/crypto.h>
#include <openssl/evp.h>
#include <openssl/rand.h>
#include <openssl/x509v3.h>
#ifdef SSL_EXPERIMENTAL_ENGINE
#include <openssl/engine.h>
#endif
/*
* rsa sslc uses incomplete types for most structures
@@ -121,7 +134,13 @@
#define HAVE_SSL_X509V3_EXT_d2i
#else /* RSA sslc */
#else /* HAVE_SSLC */
#include <sslc.h>
#if SSLC_VERSION > 0x1FFF
#include <x509v3.h>
#endif
/* sslc does not support this function, OpenSSL has since 9.5.1 */
#define RAND_status() 1
@@ -171,8 +190,6 @@
#define modssl_set_verify(ssl, verify, cb) \
SSL_set_verify(ssl, verify)
#define NO_SSL_X509V3_H
#endif
/* BEGIN GENERATED SECTION */
@@ -210,8 +227,4 @@
SSL_set_verify(ssl, verify, cb)
#endif
#ifndef NO_SSL_X509V3_H
#define HAVE_SSL_X509V3_H
#endif
#endif /* SSL_TOOLKIT_COMPAT_H */