]> git.pld-linux.org Git - packages/exim.git/blob - ssl.patch
Build fixes for openssl 3.
[packages/exim.git] / ssl.patch
1 --- exim-4.95/src/tls-openssl.c~        2021-09-28 08:24:46.000000000 +0000
2 +++ exim-4.95/src/tls-openssl.c 2021-10-06 06:17:24.439990018 +0000
3 @@ -232,7 +232,7 @@
4    { US"no_tlsv1", SSL_OP_NO_TLSv1 },
5  #endif
6  #ifdef SSL_OP_NO_TLSv1_1
7 -# if SSL_OP_NO_TLSv1_1 == 0x00000400L
8 +# if (OPENSSL_VERSION_NUMBER < 0x30000000fL) && (SSL_OP_NO_TLSv1_1 == 0x00000400L)
9    /* Error in chosen value in 1.0.1a; see first item in CHANGES for 1.0.1b */
10  #  warning OpenSSL 1.0.1a uses a bad value for SSL_OP_NO_TLSv1_1, ignoring
11  # else
This page took 0.073243 seconds and 3 git commands to generate.