Revision: 144157 https://trac.macports.org/changeset/144157 Author: ryandesign@macports.org Date: 2016-01-03 09:36:41 -0800 (Sun, 03 Jan 2016) Log Message: ----------- lighttpd: update to 1.4.39 Modified Paths: -------------- trunk/dports/www/lighttpd/Portfile Removed Paths: ------------- trunk/dports/www/lighttpd/files/0001-core-fix-memset_s-call-fixes-2698.patch Modified: trunk/dports/www/lighttpd/Portfile =================================================================== --- trunk/dports/www/lighttpd/Portfile 2016-01-03 17:32:23 UTC (rev 144156) +++ trunk/dports/www/lighttpd/Portfile 2016-01-03 17:36:41 UTC (rev 144157) @@ -4,7 +4,7 @@ PortSystem 1.0 name lighttpd -version 1.4.38 +version 1.4.39 set branch [join [lrange [split ${version} .] 0 1] .] categories www platforms darwin @@ -23,8 +23,8 @@ master_sites http://download.lighttpd.net/lighttpd/releases-${branch}.x/ use_xz yes -checksums rmd160 b16bca8c9e96a77843b0ce6e83734e0cb4cdf7e8 \ - sha256 4912568b7befcf3f552ca4668bd7f38cd85f42a22944359d00816ec27eb1e504 +checksums rmd160 1b6eed1ed6ee7f8aa390efc93c1a9eff8f52e4c5 \ + sha256 7eb9a1853c3d6dd5851682b0733a729ba4158d6bdff80974d5ef5f1f6887365b depends_build-append port:pkgconfig @@ -34,7 +34,6 @@ port:zlib patchfiles patch-conf.diff -patchfiles-append 0001-core-fix-memset_s-call-fixes-2698.patch post-patch { reinplace "s|@PREFIX@|${prefix}|g" \ Deleted: trunk/dports/www/lighttpd/files/0001-core-fix-memset_s-call-fixes-2698.patch =================================================================== --- trunk/dports/www/lighttpd/files/0001-core-fix-memset_s-call-fixes-2698.patch 2016-01-03 17:32:23 UTC (rev 144156) +++ trunk/dports/www/lighttpd/files/0001-core-fix-memset_s-call-fixes-2698.patch 2016-01-03 17:36:41 UTC (rev 144157) @@ -1,25 +0,0 @@ -From cfef2a35a05a2db3115fc931526a2122c1a3fc68 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Stefan=20B=C3=BChler?= <stbuehler@web.de> -Date: Sat, 5 Dec 2015 15:20:11 +0100 -Subject: [PATCH] [core] fix memset_s call (fixes #2698) - ---- - src/safe_memclear.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git src/safe_memclear.c src/safe_memclear.c -index 45747a4..cec39b7 100644 ---- src/safe_memclear.c -+++ src/safe_memclear.c -@@ -41,7 +41,7 @@ static void* safe_memset(void *s, int c, size_t n) - - void safe_memclear(void *s, size_t n) { - #if defined(HAVE_MEMSET_S) -- memset_s(s, 0, n); -+ memset_s(s, n, 0, n); - #elif defined(HAVE_EXPLICIT_BZERO) - explicit_bzero(s, n); - #else --- -2.6.2 -