diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2014-05-23 18:32:48 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2014-05-23 18:32:48 +0100 |
commit | 7e07527a6a3e003d70029baf78977219a3369507 (patch) | |
tree | 40ad8c8977afd3a1de8cb7c5be8d36db1a3d22cd /src | |
parent | f2de3a3339ee08778dffb98057f1c19bdcf86374 (diff) |
Add GnuTLS version check
Diffstat (limited to 'src')
-rw-r--r-- | src/src/tls-gnu.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c index e85095d65..5bdb21e6e 100644 --- a/src/src/tls-gnu.c +++ b/src/src/tls-gnu.c @@ -43,6 +43,11 @@ require current GnuTLS, then we'll drop support for the ancient libraries). #if GNUTLS_VERSION_NUMBER >= 0x020c00 # include <gnutls/pkcs11.h> #endif +#if GNUTLS_VERSION_NUMBER < 0x030103 && !defined(DISABLE_OCSP) +# warning "GnuTLS library version too old; define DISABLE_OCSP in Makefile" +# define DISABLE_OCSP +#endif + #ifndef DISABLE_OCSP # include <gnutls/ocsp.h> #endif |