aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorswills <swills@FreeBSD.org>2017-11-16 01:07:58 +0800
committerswills <swills@FreeBSD.org>2017-11-16 01:07:58 +0800
commitb0a346afaa376b1d3f84a3801025a1f4a742c6f7 (patch)
treee3c29a070d10568304f2b3e103424bce3df25943
parentd8aa397a9d68cc24ed4cc180b291c72b23e423a8 (diff)
downloadfreebsd-ports-gnome-b0a346afaa376b1d3f84a3801025a1f4a742c6f7.tar.gz
freebsd-ports-gnome-b0a346afaa376b1d3f84a3801025a1f4a742c6f7.tar.zst
freebsd-ports-gnome-b0a346afaa376b1d3f84a3801025a1f4a742c6f7.zip
www/lighttpd: update to 1.4.48
PR: 223686 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> (maintainer)
-rw-r--r--www/lighttpd/Makefile3
-rw-r--r--www/lighttpd/distinfo10
-rw-r--r--www/lighttpd/files/patch-src_network.c16
3 files changed, 6 insertions, 23 deletions
diff --git a/www/lighttpd/Makefile b/www/lighttpd/Makefile
index 0b9b538cd0c9..ba65a8335db7 100644
--- a/www/lighttpd/Makefile
+++ b/www/lighttpd/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME?= lighttpd
-PORTVERSION= 1.4.47
-PORTREVISION= 1
+PORTVERSION= 1.4.48
CATEGORIES?= www
MASTER_SITES?= http://download.lighttpd.net/lighttpd/releases-1.4.x/
diff --git a/www/lighttpd/distinfo b/www/lighttpd/distinfo
index 7911985b4b84..cfbe50969323 100644
--- a/www/lighttpd/distinfo
+++ b/www/lighttpd/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1508711398
-SHA256 (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch) = 250c67a2808276799c373f0f41cdefbbcfd11c125c0299d952bc9508130117fd
-SIZE (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch) = 242474
-SHA256 (lighttpd-1.4.47.tar.xz) = e47e64a9cc2b824c45792a6b1a5542945956e77ede3454845f42548495946c1c
-SIZE (lighttpd-1.4.47.tar.xz) = 703012
+TIMESTAMP = 1510687363
+SHA256 (lighttpd-1.4.48.tar.xz) = 0f8ad5aac7529d7b948b9d7e8cd0b4a9e177309d85d6bf6516e28e6e40d74f36
+SIZE (lighttpd-1.4.48.tar.xz) = 708396
+SHA256 (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch) = dc9bd6e26755cc2e3ccf6eaf8cc89e5d697f5a876f71318be67b28225368fd4e
+SIZE (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch) = 242037
diff --git a/www/lighttpd/files/patch-src_network.c b/www/lighttpd/files/patch-src_network.c
deleted file mode 100644
index 349d862ec557..000000000000
--- a/www/lighttpd/files/patch-src_network.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- src/network.c.orig 2017-10-22 20:09:57 UTC
-+++ src/network.c
-@@ -77,9 +77,13 @@ static void network_host_normalize_addr_str(buffer *ho
- if (addr->plain.sa_family == AF_INET6)
- buffer_append_string_len(host, CONST_STR_LEN("]"));
- if (addr->plain.sa_family != AF_UNIX) {
-+#ifdef HAVE_IPV6
- unsigned short port = (addr->plain.sa_family == AF_INET)
- ? ntohs(addr->ipv4.sin_port)
- : ntohs(addr->ipv6.sin6_port);
-+#else
-+ unsigned short port = ntohs(addr->ipv4.sin_port);
-+#endif
- buffer_append_string_len(host, CONST_STR_LEN(":"));
- buffer_append_int(host, (int)port);
- }