diff -Nru fetchmail-6.3.26/debian/changelog fetchmail-6.3.26/debian/changelog --- fetchmail-6.3.26/debian/changelog 2013-05-11 11:31:27.000000000 +0000 +++ fetchmail-6.3.26/debian/changelog 2015-11-15 01:39:39.000000000 +0000 @@ -1,3 +1,9 @@ +fetchmail (6.3.26-1+rpi1) stretch-staging; urgency=medium + + * Remove sslv3 support to fix build with new openssl (Closes: 804604). + + -- Peter Michael Green Sun, 15 Nov 2015 01:38:31 +0000 + fetchmail (6.3.26-1) unstable; urgency=low * New upstream release. diff -Nru fetchmail-6.3.26/debian/patches/02_no_sslv3.patch fetchmail-6.3.26/debian/patches/02_no_sslv3.patch --- fetchmail-6.3.26/debian/patches/02_no_sslv3.patch 1970-01-01 00:00:00.000000000 +0000 +++ fetchmail-6.3.26/debian/patches/02_no_sslv3.patch 2015-11-15 01:43:04.000000000 +0000 @@ -0,0 +1,16 @@ +Description: Remove sslv3 support to fix build with new openssl (Closes: 804604). +Author: Peter Michael Green +Bug-Debian: https://bugs.debian.org/804604 + +--- fetchmail-6.3.26.orig/socket.c ++++ fetchmail-6.3.26/socket.c +@@ -914,7 +914,8 @@ int SSLOpen(int sock, char *mycert, char + return -1; + #endif + } else if(!strcasecmp("ssl3",myproto)) { +- _ctx[sock] = SSL_CTX_new(SSLv3_client_method()); ++ report(stderr, GT_("Your operating system does not support SSLv3.\n")); ++ return -1; + } else if(!strcasecmp("tls1",myproto)) { + _ctx[sock] = SSL_CTX_new(TLSv1_client_method()); + } else if (!strcasecmp("ssl23",myproto)) { diff -Nru fetchmail-6.3.26/debian/patches/series fetchmail-6.3.26/debian/patches/series --- fetchmail-6.3.26/debian/patches/series 2013-05-11 11:17:45.000000000 +0000 +++ fetchmail-6.3.26/debian/patches/series 2015-11-15 01:42:38.000000000 +0000 @@ -1 +1,2 @@ 01_fetchmailconf.patch +02_no_sslv3.patch