diff -Nru heirloom-mailx-12.5/debian/changelog heirloom-mailx-12.5/debian/changelog --- heirloom-mailx-12.5/debian/changelog 2015-08-15 11:45:55.000000000 +0000 +++ heirloom-mailx-12.5/debian/changelog 2015-11-15 01:51:31.000000000 +0000 @@ -1,3 +1,9 @@ +heirloom-mailx (12.5-5+rpi1) stretch-staging; urgency=medium + + * Remove sslv3 support to allow build with new openssl. + + -- Peter Michael Green Sun, 15 Nov 2015 01:51:20 +0000 + heirloom-mailx (12.5-5) unstable; urgency=medium * Added copyright file to sources (Closes: #795568) diff -Nru heirloom-mailx-12.5/debian/patches/0016-no-sslv3.patch heirloom-mailx-12.5/debian/patches/0016-no-sslv3.patch --- heirloom-mailx-12.5/debian/patches/0016-no-sslv3.patch 1970-01-01 00:00:00.000000000 +0000 +++ heirloom-mailx-12.5/debian/patches/0016-no-sslv3.patch 2015-11-15 01:52:15.000000000 +0000 @@ -0,0 +1,29 @@ +Description: Remove sslv3 support to allow build with new openssl. +Author: Peter Michael Green + +--- +The information above should follow the Patch Tagging Guidelines, please +checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here +are templates for supplementary fields that you might want to add: + +Origin: , +Bug: +Bug-Debian: https://bugs.debian.org/ +Bug-Ubuntu: https://launchpad.net/bugs/ +Forwarded: +Reviewed-By: +Last-Update: + +--- heirloom-mailx-12.5.orig/openssl.c ++++ heirloom-mailx-12.5/openssl.c +@@ -216,9 +216,7 @@ ssl_select_method(const char *uhp) + + cp = ssl_method_string(uhp); + if (cp != NULL) { +- if (equal(cp, "ssl3")) +- method = SSLv3_client_method(); +- else if (equal(cp, "tls1")) ++ if (equal(cp, "tls1")) + method = TLSv1_client_method(); + else { + fprintf(stderr, catgets(catd, CATSET, 244, diff -Nru heirloom-mailx-12.5/debian/patches/series heirloom-mailx-12.5/debian/patches/series --- heirloom-mailx-12.5/debian/patches/series 2015-01-30 20:16:20.000000000 +0000 +++ heirloom-mailx-12.5/debian/patches/series 2015-11-15 01:52:03.000000000 +0000 @@ -6,3 +6,4 @@ 0013-fio.c-Unconditionally-require-wordexp-support.patch 0014-globname-Invoke-wordexp-with-WRDE_NOCMD.patch 0015-usr-sbin-sendmail.patch +0016-no-sslv3.patch