summaryrefslogtreecommitdiff
path: root/imap/src/osdep/unix/ssl_unix.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2018-01-07 20:51:53 -0700
committerEduardo Chappa <chappa@washington.edu>2018-01-07 20:51:53 -0700
commit30507e11007fbacb942016b0a1167104ad2c7d49 (patch)
tree593ee3935c1c53517e2b5f3cab5a5226f7795408 /imap/src/osdep/unix/ssl_unix.c
parent6b3735a94ab4da1f9d87941c0a8a36890db63b97 (diff)
downloadalpine-30507e11007fbacb942016b0a1167104ad2c7d49.tar.xz
* Redefine TLSv1_1_client_method and TLSv1_2_client_method
to TLS_client_methodto when compiling Alpine with OpenSSL 1.1.
Diffstat (limited to 'imap/src/osdep/unix/ssl_unix.c')
-rw-r--r--imap/src/osdep/unix/ssl_unix.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/imap/src/osdep/unix/ssl_unix.c b/imap/src/osdep/unix/ssl_unix.c
index 9498eb0e..4c4d6ef8 100644
--- a/imap/src/osdep/unix/ssl_unix.c
+++ b/imap/src/osdep/unix/ssl_unix.c
@@ -36,6 +36,14 @@
#ifdef OPENSSL_1_1_0
#include <rsa.h>
#include <bn.h>
+#ifdef TLSv1_1_client_method
+#undef TLSv1_1_client_method
+#endif /* TLSv1_1_client_method */
+#ifdef TLSv1_2_client_method
+#undef TLSv1_2_client_method
+#endif /* TLSv1_2_client_method */
+#define TLSv1_1_client_method TLS_client_method
+#define TLSv1_2_client_method TLS_client_method
#endif /* OPENSSL_1_1_0 */
#undef STRING
#undef crypt