pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/lighttpd lighttpd: updated to 1.4.48
details: https://anonhg.NetBSD.org/pkgsrc/rev/4bd12af7c1e8
branches: trunk
changeset: 371692:4bd12af7c1e8
user: adam <adam%pkgsrc.org@localhost>
date: Fri Nov 17 09:51:48 2017 +0000
description:
lighttpd: updated to 1.4.48
This release fixes a few regressions from lighttpd 1.4.46 and adds
a new module mod_authn_sasl when lighttpd is built --with-sasl
diffstat:
www/lighttpd/Makefile | 4 ++--
www/lighttpd/distinfo | 11 +++++------
www/lighttpd/patches/patch-src_network.c | 20 --------------------
3 files changed, 7 insertions(+), 28 deletions(-)
diffs (54 lines):
diff -r d901b1830d67 -r 4bd12af7c1e8 www/lighttpd/Makefile
--- a/www/lighttpd/Makefile Fri Nov 17 09:07:38 2017 +0000
+++ b/www/lighttpd/Makefile Fri Nov 17 09:51:48 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.65 2017/10/29 00:34:29 schmonz Exp $
+# $NetBSD: Makefile,v 1.66 2017/11/17 09:51:48 adam Exp $
-DISTNAME= lighttpd-1.4.47
+DISTNAME= lighttpd-1.4.48
CATEGORIES= www
MASTER_SITES= http://download.lighttpd.net/lighttpd/releases-1.4.x/
EXTRACT_SUFX= .tar.xz
diff -r d901b1830d67 -r 4bd12af7c1e8 www/lighttpd/distinfo
--- a/www/lighttpd/distinfo Fri Nov 17 09:07:38 2017 +0000
+++ b/www/lighttpd/distinfo Fri Nov 17 09:51:48 2017 +0000
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.41 2017/10/29 00:34:29 schmonz Exp $
+$NetBSD: distinfo,v 1.42 2017/11/17 09:51:48 adam Exp $
-SHA1 (lighttpd-1.4.47.tar.xz) = 57dcbdcc42d52f113bd46e09b3fb895e2a076b4f
-RMD160 (lighttpd-1.4.47.tar.xz) = 8cadb881745f4deae5101c5227c208e4b12f429c
-SHA512 (lighttpd-1.4.47.tar.xz) = 9fac3acc428d9faf69fca2768578dca619f778889e8a3779c429038eec7aff6b3dd497d5437152a070df850861fe2132042fa4418e31c1aab89df23a1c544f99
-Size (lighttpd-1.4.47.tar.xz) = 703012 bytes
+SHA1 (lighttpd-1.4.48.tar.xz) = e48274a53d6c5aeb085644c30c8dd8ab0e2f8212
+RMD160 (lighttpd-1.4.48.tar.xz) = 4a16f922b283612276a40fee2b809418f9bfa733
+SHA512 (lighttpd-1.4.48.tar.xz) = 361dbf07b280aa7345f3026cce6d12d0aeaa3bb535b5a5b2a894a568395f46a9c7ce723dfd1948225117495f3e63ec207b72d5e4b680da7cd56419e23cf8bae4
+Size (lighttpd-1.4.48.tar.xz) = 708396 bytes
SHA1 (patch-doc_config_lighttpd.conf) = de14fd0aa0ed2cac5846d810b5c89af4036f1b70
SHA1 (patch-src_fdevent__solaris__port.c) = c31f457dd6f25dba01710faf34c45a636519320f
-SHA1 (patch-src_network.c) = ad982b124f00f35ed06f6f45f77e4aca17f2e0fb
diff -r d901b1830d67 -r 4bd12af7c1e8 www/lighttpd/patches/patch-src_network.c
--- a/www/lighttpd/patches/patch-src_network.c Fri Nov 17 09:07:38 2017 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-$NetBSD: patch-src_network.c,v 1.1 2017/10/29 00:34:30 schmonz Exp $
-
-Fix build without IPv6 (from https://redmine.lighttpd.net/issues/2832).
-
---- src/network.c.orig 2017-10-22 20:09:57.000000000 +0000
-+++ src/network.c
-@@ -77,9 +77,13 @@ static void network_host_normalize_addr_
- 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);
- }
Home |
Main Index |
Thread Index |
Old Index