From: Guenter Knauf Date: Wed, 28 Oct 2009 21:17:50 +0000 (+0000) Subject: define HAVE_OCSP dependent on OpenSSL version to make things X-Git-Tag: 2.3.3~113 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=108a667e4a7ea07696781771a6c54677951c98ce;p=apache define HAVE_OCSP dependent on OpenSSL version to make things easier for non-configure platforms (NetWare, Win32). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@830765 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_toolkit_compat.h b/modules/ssl/ssl_toolkit_compat.h index f1bdebdc3c..39850605a7 100644 --- a/modules/ssl/ssl_toolkit_compat.h +++ b/modules/ssl/ssl_toolkit_compat.h @@ -39,7 +39,8 @@ #include #include -#ifdef HAVE_OCSP +#if OPENSSL_VERSION_NUMBER >= 0x00907000 +#define HAVE_OCSP #include #include #endif