[exim-cvs] Test suite: disable OCSP for old openssl part 2

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Exim Git Commits Mailing List
日付:  
To: exim-cvs
題目: [exim-cvs] Test suite: disable OCSP for old openssl part 2
Gitweb: http://git.exim.org/exim.git/commitdiff/eca4debb8fa74d67fbeb4aefdcc3d67ef51386e0
Commit:     eca4debb8fa74d67fbeb4aefdcc3d67ef51386e0
Parent:     6d68e1c72d8bd58b005e9d1c8df890e4fe5e6536
Author:     Todd Lyons <tlyons@???>
AuthorDate: Wed Oct 29 07:50:41 2014 -0700
Committer:  Todd Lyons <tlyons@???>
CommitDate: Wed Oct 29 07:50:41 2014 -0700


    Test suite: disable OCSP for old openssl part 2


    Make sure to only disable this if building for openssl, allow gnutls
      to build with OCSP for all versions that support it.
---
 doc/doc-txt/ChangeLog |    3 +++
 test/src/client.c     |    9 ++++-----
 2 files changed, 7 insertions(+), 5 deletions(-)


diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog
index ed45747..5a298d1 100644
--- a/doc/doc-txt/ChangeLog
+++ b/doc/doc-txt/ChangeLog
@@ -59,6 +59,9 @@ JH/08 Rename the TPDA expermimental facility to Event Actions.  The #ifdef
       raised for inbound connections, if the main configuration event_action
       option is defined.


+TL/06 In test suite, disable OCSP for old versions of openssl which contained
+      early OCSP support, but no stapling (appears to be less than 1.0.0).
+


Exim version 4.84
-----------------
diff --git a/test/src/client.c b/test/src/client.c
index 72cebbe..5b52916 100644
--- a/test/src/client.c
+++ b/test/src/client.c
@@ -58,11 +58,6 @@ static int sigalrm_seen = 0;

/* TLS support can be optionally included, either for OpenSSL or GnuTLS. The
latter needs a whole pile of tables. */
-#if !defined(EXIM_HAVE_OPENSSL_TLSEXT) && !defined(DISABLE_OCSP)
-# warning "OpenSSL library version too old; define DISABLE_OCSP in Makefile"
-# define DISABLE_OCSP
-#endif
-
#ifdef HAVE_OPENSSL
# define HAVE_TLS
# include <openssl/crypto.h>
@@ -71,6 +66,10 @@ latter needs a whole pile of tables. */
# include <openssl/ssl.h>
# include <openssl/err.h>
# include <openssl/rand.h>
+# if !defined(EXIM_HAVE_OPENSSL_TLSEXT) && !defined(DISABLE_OCSP)
+# warning "OpenSSL library version too old; define DISABLE_OCSP in Makefile"
+# define DISABLE_OCSP
+# endif
# ifndef DISABLE_OCSP
# include <openssl/ocsp.h>
# endif