diff options
Diffstat (limited to 'crypto/opensslconf.h')
| -rw-r--r-- | crypto/opensslconf.h | 12 | 
1 files changed, 12 insertions, 0 deletions
diff --git a/crypto/opensslconf.h b/crypto/opensslconf.h index f2fbba19b0d49..b78b3df9747a4 100644 --- a/crypto/opensslconf.h +++ b/crypto/opensslconf.h @@ -32,12 +32,18 @@ extern "C" {  #ifndef OPENSSL_NO_SCTP  # define OPENSSL_NO_SCTP  #endif +#ifndef OPENSSL_NO_SSL2 +# define OPENSSL_NO_SSL2 +#endif  #ifndef OPENSSL_NO_STORE  # define OPENSSL_NO_STORE  #endif  #ifndef OPENSSL_NO_UNIT_TEST  # define OPENSSL_NO_UNIT_TEST  #endif +#ifndef OPENSSL_NO_WEAK_SSL_CIPHERS +# define OPENSSL_NO_WEAK_SSL_CIPHERS +#endif  #endif /* OPENSSL_DOING_MAKEDEPEND */ @@ -74,12 +80,18 @@ extern "C" {  # if defined(OPENSSL_NO_SCTP) && !defined(NO_SCTP)  #  define NO_SCTP  # endif +# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) +#  define NO_SSL2 +# endif  # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)  #  define NO_STORE  # endif  # if defined(OPENSSL_NO_UNIT_TEST) && !defined(NO_UNIT_TEST)  #  define NO_UNIT_TEST  # endif +# if defined(OPENSSL_NO_WEAK_SSL_CIPHERS) && !defined(NO_WEAK_SSL_CIPHERS) +#  define NO_WEAK_SSL_CIPHERS +# endif  #endif  /* crypto/opensslconf.h.in */  | 
