From: <abe...@us...> - 2015-07-27 16:50:27
|
Revision: 7158 http://sourceforge.net/p/astlinux/code/7158 Author: abelbeck Date: 2015-07-27 16:50:24 +0000 (Mon, 27 Jul 2015) Log Message: ----------- lighttpd, version bump to 1.4.36, remove 'hostname-underscore.patch' since it doesn't work - the hostname should not contain underscores Note: this version disables SSLv3 by default, probably not a good thing for our use, we may want to re-enable ssl.use-sslv3 in the default config Modified Paths: -------------- branches/1.0/package/lighttpd/lighttpd.mk Removed Paths: ------------- branches/1.0/package/lighttpd/lighttpd-hostname-underscore.patch Deleted: branches/1.0/package/lighttpd/lighttpd-hostname-underscore.patch =================================================================== --- branches/1.0/package/lighttpd/lighttpd-hostname-underscore.patch 2015-07-26 03:42:09 UTC (rev 7157) +++ branches/1.0/package/lighttpd/lighttpd-hostname-underscore.patch 2015-07-27 16:50:24 UTC (rev 7158) @@ -1,17 +0,0 @@ ---- lighttpd-1.4.35.orig/src/request.c 2010-08-17 05:04:38.000000000 -0400 -+++ lighttpd-1.4.35/src/request.c 2011-02-24 13:11:20.000000000 -0500 -@@ -180,12 +180,12 @@ - label_len = 0; - level++; - } else if (i == 0) { -- if (!light_isalnum(c)) { -+ if (!light_isalnum(c) && c != '_') { - return -1; - } - label_len++; - } else { -- if (c != '-' && !light_isalnum(c)) { -+ if (c != '-' && c != '_' &&!light_isalnum(c)) { - return -1; - } - label_len++; Modified: branches/1.0/package/lighttpd/lighttpd.mk =================================================================== --- branches/1.0/package/lighttpd/lighttpd.mk 2015-07-26 03:42:09 UTC (rev 7157) +++ branches/1.0/package/lighttpd/lighttpd.mk 2015-07-27 16:50:24 UTC (rev 7158) @@ -4,7 +4,7 @@ # ############################################################# -LIGHTTPD_VERSION = 1.4.35 +LIGHTTPD_VERSION = 1.4.36 LIGHTTPD_SITE = http://download.lighttpd.net/lighttpd/releases-1.4.x LIGHTTPD_DEPENDENCIES = host-pkg-config LIGHTTPD_CONF_OPT = \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |