Fix compile on NetBSD 5.0 (or anything else using an old 0.9.9-dev OpenSSL).

This commit is contained in:
Gregory P. Smith 2010-10-13 03:53:21 +00:00
parent 2501aca628
commit bd4dacb3f9
1 changed files with 4 additions and 2 deletions

View File

@ -113,8 +113,10 @@ static unsigned int _ssl_locks_count = 0;
# undef HAVE_OPENSSL_RAND # undef HAVE_OPENSSL_RAND
#endif #endif
/* SSL_CTX_clear_options() and SSL_clear_options() were first added in OpenSSL 0.9.8m */ /* SSL_CTX_clear_options() and SSL_clear_options() were first added in
#if OPENSSL_VERSION_NUMBER >= 0x009080dfL * OpenSSL 0.9.8m but do not appear in some 0.9.9-dev versions such the
* 0.9.9 from "May 2008" that NetBSD 5.0 uses. */
#if OPENSSL_VERSION_NUMBER >= 0x009080dfL && OPENSSL_VERSION_NUMBER != 0x00909000L
# define HAVE_SSL_CTX_CLEAR_OPTIONS # define HAVE_SSL_CTX_CLEAR_OPTIONS
#else #else
# undef HAVE_SSL_CTX_CLEAR_OPTIONS # undef HAVE_SSL_CTX_CLEAR_OPTIONS