From: <abe...@us...> - 2014-12-31 18:38:51
|
Revision: 6889 http://sourceforge.net/p/astlinux/code/6889 Author: abelbeck Date: 2014-12-31 18:38:44 +0000 (Wed, 31 Dec 2014) Log Message: ----------- msmtp, version bump to 1.6.0, with a ignore-AI_IDN patch Modified Paths: -------------- branches/1.0/package/msmtp/msmtp.mk Added Paths: ----------- branches/1.0/package/msmtp/msmtp-ignore-AI_IDN.patch Added: branches/1.0/package/msmtp/msmtp-ignore-AI_IDN.patch =================================================================== --- branches/1.0/package/msmtp/msmtp-ignore-AI_IDN.patch (rev 0) +++ branches/1.0/package/msmtp/msmtp-ignore-AI_IDN.patch 2014-12-31 18:38:44 UTC (rev 6889) @@ -0,0 +1,13 @@ +--- msmtp-1.6.0/src/net.c.orig 2014-12-31 12:21:15.000000000 -0600 ++++ msmtp-1.6.0/src/net.c 2014-12-31 12:22:55.000000000 -0600 +@@ -620,9 +620,7 @@ + hints.ai_addr = NULL; + hints.ai_next = NULL; + port_string = xasprintf("%d", port); +-#ifdef AI_IDN +- hints.ai_flags |= AI_IDN; +-#elif defined(HAVE_LIBIDN) ++#ifdef HAVE_LIBIDN + idna_to_ascii_lz(hostname, &idn_hostname, 0); + #endif + error_code = getaddrinfo(idn_hostname ? idn_hostname : hostname, Modified: branches/1.0/package/msmtp/msmtp.mk =================================================================== --- branches/1.0/package/msmtp/msmtp.mk 2014-12-30 15:04:18 UTC (rev 6888) +++ branches/1.0/package/msmtp/msmtp.mk 2014-12-31 18:38:44 UTC (rev 6889) @@ -4,8 +4,8 @@ # ############################################################# -MSMTP_VERSION = 1.4.32 -MSMTP_SOURCE = msmtp-$(MSMTP_VERSION).tar.bz2 +MSMTP_VERSION = 1.6.0 +MSMTP_SOURCE = msmtp-$(MSMTP_VERSION).tar.xz MSMTP_SITE = http://downloads.sourceforge.net/project/msmtp/msmtp/$(MSMTP_VERSION) MSMTP_DEPENDENCIES = openssl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |