diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-12-06 14:22:45 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-12-06 14:22:45 +0100 |
commit | 2b0e09b0f98e0f67417652dd7f4afd59bf895326 (patch) | |
tree | 1ee8919ecfb02e4004572ae2578b5c454da3a4a0 /lib/ssluse.c | |
parent | 361cd03d5861d3639bfcc6b5001f113a05a195cc (diff) | |
download | curl-2b0e09b0f98e0f67417652dd7f4afd59bf895326.tar.gz |
OpenSSL: check for the SSLv2 function in configure
If no SSLv2 was detected in OpenSSL by configure, then we enforce the
OPENSSL_NO_SSL2 define as it seems some people report it not being
defined properly in the OpenSSL headers.
Diffstat (limited to 'lib/ssluse.c')
-rw-r--r-- | lib/ssluse.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index af70fe08b..8deea26ae 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -127,6 +127,11 @@ #define HAVE_ERR_REMOVE_THREAD_STATE 1 #endif +#ifndef HAVE_SSLV2_CLIENT_METHOD +#undef OPENSSL_NO_SSL2 /* undef first to avoid compiler warnings */ +#define OPENSSL_NO_SSL2 +#endif + /* * Number of bytes to read from the random number seed file. This must be * a finite value (because some entropy "files" like /dev/urandom have |