diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2018-05-11 11:23:42 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2018-05-11 11:23:42 +0000 |
commit | 9c9c191d6e0d53bd3c1d413cef07b50ccc0ff871 (patch) | |
tree | c1fae1e497e2620d4ccbe2b698f6611552dfe0d8 /mail/fetchmail/files | |
parent | www/py-django-dpaste: Update to 2.13 (diff) |
Fix build with openssl-devel, remove BROKEN_SSL.
Approved by: (blanket approval for unbreaking builds)
Notes
Notes:
svn path=/head/; revision=469628
Diffstat (limited to 'mail/fetchmail/files')
-rw-r--r-- | mail/fetchmail/files/patch-socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/fetchmail/files/patch-socket.c b/mail/fetchmail/files/patch-socket.c index 28a0b99caf23..6bb35ccf25d1 100644 --- a/mail/fetchmail/files/patch-socket.c +++ b/mail/fetchmail/files/patch-socket.c @@ -5,7 +5,7 @@ if(myproto) { if(!strcasecmp("ssl2",myproto)) { -#if HAVE_DECL_SSLV2_CLIENT_METHOD + 0 > 0 -+#ifndef OPENSSL_NO_SSL2 ++#if (HAVE_DECL_SSLV2_CLIENT_METHOD + 0 > 0) && !defined(OPENSSL_NO_SSL2) _ctx[sock] = SSL_CTX_new(SSLv2_client_method()); #else - report(stderr, GT_("Your operating system does not support SSLv2.\n")); |