commit msmtp for openSUSE:Factory
Hello community, here is the log from the commit of package msmtp for openSUSE:Factory checked in at Wed Apr 21 01:59:40 CEST 2010. -------- --- msmtp/msmtp.changes 2010-03-21 20:27:38.000000000 +0100 +++ /mounts/work_src_done/STABLE/msmtp/msmtp.changes 2010-04-19 16:13:46.000000000 +0200 @@ -1,0 +2,5 @@ +Mon Apr 19 16:13:36 CEST 2010 - meissner@suse.de + +- fix build with new openSSL + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- msmtp-fix-newopenssl.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ msmtp.spec ++++++ --- /var/tmp/diff_new_pack.ygoqd8/_old 2010-04-21 01:59:29.000000000 +0200 +++ /var/tmp/diff_new_pack.ygoqd8/_new 2010-04-21 01:59:29.000000000 +0200 @@ -20,7 +20,7 @@ Name: msmtp Version: 1.4.20 -Release: 1 +Release: 2 # License: GPLv3+ Group: Productivity/Networking/Email/Utilities @@ -55,6 +55,7 @@ # Url: http://msmtp.sourceforge.net/ Source: http://prdownloads.sourceforge.net/msmtp/msmtp-%{version}.tar.bz2 +Patch0: msmtp-fix-newopenssl.patch # Summary: Lightweight SMTP Client @@ -86,6 +87,7 @@ %prep %setup -q +%patch0 -p1 %build %if 0%{?suse_version} > 1000 ++++++ msmtp-fix-newopenssl.patch ++++++ Index: msmtp-1.4.20/src/tls.c =================================================================== --- msmtp-1.4.20.orig/src/tls.c +++ msmtp-1.4.20/src/tls.c @@ -888,7 +888,7 @@ int tls_check_cert(tls_t *tls, const cha char *buf; int length; /* needed to get the DNS subjectAltNames: */ - STACK *subj_alt_names; + STACK_OF(GENERAL_NAME) *subj_alt_names; int subj_alt_names_count; GENERAL_NAME *subj_alt_name; /* did we find a name matching hostname? */ @@ -988,7 +988,7 @@ int tls_check_cert(tls_t *tls, const cha /* Try the DNS subjectAltNames. */ match_found = 0; if ((subj_alt_names = - X509_get_ext_d2i(x509cert, NID_subject_alt_name, NULL, NULL))) + (STACK_OF(GENERAL_NAME)*)X509_get_ext_d2i(x509cert, NID_subject_alt_name, NULL, NULL))) { subj_alt_names_count = sk_GENERAL_NAME_num(subj_alt_names); for (i = 0; i < subj_alt_names_count; i++) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de