Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2501aca commit bd4dacbCopy full SHA for bd4dacb
1 file changed
Modules/_ssl.c
@@ -113,8 +113,10 @@ static unsigned int _ssl_locks_count = 0;
113
# undef HAVE_OPENSSL_RAND
114
#endif
115
116
-/* SSL_CTX_clear_options() and SSL_clear_options() were first added in OpenSSL 0.9.8m */
117
-#if OPENSSL_VERSION_NUMBER >= 0x009080dfL
+/* SSL_CTX_clear_options() and SSL_clear_options() were first added in
+ * OpenSSL 0.9.8m but do not appear in some 0.9.9-dev versions such the
118
+ * 0.9.9 from "May 2008" that NetBSD 5.0 uses. */
119
+#if OPENSSL_VERSION_NUMBER >= 0x009080dfL && OPENSSL_VERSION_NUMBER != 0x00909000L
120
# define HAVE_SSL_CTX_CLEAR_OPTIONS
121
#else
122
# undef HAVE_SSL_CTX_CLEAR_OPTIONS
0 commit comments