1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-07-08 12:59:17 -04:00
ports/mail/cyrus-imapd25/files/patch-imtest__imtest.c
Hajimu UMEMOTO daa36bfe2b Fix build on 9.X.
Reported by:	Andrea Venturoli <ml__at__netfence.it>
2015-12-02 11:46:15 +00:00

12 lines
598 B
C

--- imtest/imtest.c.orig 2015-11-30 06:30:33 UTC
+++ imtest/imtest.c
@@ -503,7 +503,9 @@ static int tls_init_clientengine(int ver
off |= SSL_OP_ALL; /* Work around all known bugs */
off |= SSL_OP_NO_SSLv2; /* Disable insecure SSLv2 */
off |= SSL_OP_NO_SSLv3; /* Disable insecure SSLv3 */
+#if (OPENSSL_VERSION_NUMBER >= 0x1000000fL)
off |= SSL_OP_NO_COMPRESSION; /* Disable TLS compression */
+#endif // (OPENSSL_VERSION_NUMBER >= 0x1000000fL)
SSL_CTX_set_options(tls_ctx, off);
SSL_CTX_set_info_callback(tls_ctx, apps_ssl_info_callback);