diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-11-13 15:51:46 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-11-13 15:51:46 +0100 |
commit | 0755308a6a210fdb886ea127dfa6b6d2359d7f9c (patch) | |
tree | dacd047a181fc43f9f188ff85c6a6ec3d1b7e552 /lib | |
parent | 53b13d0c714ed255318c6b56214d76bfe085d5bf (diff) |
openssl: remove 0.9.3 check
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vtls/openssl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 5bfddf370..06af9df0d 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -92,9 +92,7 @@ #undef HAVE_ENGINE_LOAD_FOUR_ARGS #endif -#if (OPENSSL_VERSION_NUMBER >= 0x00903001L) && \ - defined(HAVE_OPENSSL_PKCS12_H) && \ - !defined(OPENSSL_IS_BORINGSSL) +#if defined(HAVE_OPENSSL_PKCS12_H) && !defined(OPENSSL_IS_BORINGSSL) /* OpenSSL has PKCS 12 support, BoringSSL does not */ #define HAVE_PKCS12_SUPPORT #else |