Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (041fcc9a7c8366c7437b60aadd894d5c2cb6c4ee)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (041fcc9a7c8366c7437b60aadd894d5c2cb6c4ee)
  • Date: Mon, 16 Feb 2009 18:00:34 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

http/lighttpd/DEPENDS | 8 +++----
http/lighttpd/DETAILS | 4 +--
http/lighttpd/HISTORY | 5 ++++
http/lighttpd/fastcgi.patch | 49
+++++++++++++++++++++-----------------------
4 files changed, 35 insertions(+), 31 deletions(-)

New commits:
commit 041fcc9a7c8366c7437b60aadd894d5c2cb6c4ee
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

lighttpd: => 1.4.21

diff --git a/http/lighttpd/DEPENDS b/http/lighttpd/DEPENDS
index 0822f1f..314c90e 100755
--- a/http/lighttpd/DEPENDS
+++ b/http/lighttpd/DEPENDS
@@ -28,8 +28,8 @@ optional_depends lua \
optional_depends libmemcache \
'--with-memcache' '--without-memcache' \
'memcache storage for mod_trigger_b4_dl' &&
-if list_find $LIGHTTPD_OPTS "--with-webdav-props"
-then
-depends sqlite &&
-depends libxml2
+
+if list_find "$LIGHTTPD_OPTS" "--with-webdav-props"; then
+ depends sqlite &&
+ depends libxml2
fi
diff --git a/http/lighttpd/DETAILS b/http/lighttpd/DETAILS
index 1606b0b..5555231 100755
--- a/http/lighttpd/DETAILS
+++ b/http/lighttpd/DETAILS
@@ -1,6 +1,6 @@
SPELL=lighttpd
- VERSION=1.4.20
-
SOURCE_HASH=sha512:a2fdb4c4e0c949265b90399577529e01da51b10fdf9bd1b7f7d88f60e08887fe72e7249a4be2f21531733bb871dfd0e3d934bf07ef72bc59a4d5d0737520ba6a
+ VERSION=1.4.21
+
SOURCE_HASH=sha512:13d74af135cb85c47b1b4ed890ac9dd55b81cc252c4f452817c475758574a18faa1cae89f3e1b2d28ca1d7144b84e0442f6a248b64ae156f2a57edb56128c2a7
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_URL[0]=http://www.lighttpd.net/download/$SOURCE
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
diff --git a/http/lighttpd/HISTORY b/http/lighttpd/HISTORY
index 97e9d72..8d59292 100644
--- a/http/lighttpd/HISTORY
+++ b/http/lighttpd/HISTORY
@@ -1,3 +1,8 @@
+2009-02-17 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.4.21
+ * DEPENDS: quoting opts
+ * fastcgi.patch: adopted
+
2008-09-30 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.4.20; switched to bzipped2 tarball
* PRE_BUILD: everything's fixed by upstream, backported fastcgi patch
diff --git a/http/lighttpd/fastcgi.patch b/http/lighttpd/fastcgi.patch
index 2f235ec..6a622fc 100644
--- a/http/lighttpd/fastcgi.patch
+++ b/http/lighttpd/fastcgi.patch
@@ -1,27 +1,26 @@
---- src/mod_fastcgi.c.orig Fri Mar 7 13:48:34 2008
-+++ src/mod_fastcgi.c Mon Sep 29 22:49:07 2008
-@@ -3581,13 +3581,22 @@ static handler_t fcgi_check_extension(server *srv,
con
- *
- * SCRIPT_NAME = /fcgi-bin/foo
- * PATH_INFO = /bar
-+ *
-+ * if prefix = /
-+ *
-+ * /foo/bar
-+ *
-+ * SCRIPT_NAME =
-+ * PATH_INFO = /foo/bar
- *
- */
+--- src/mod_fastcgi.c.orig Thu Oct 16 16:08:37 2008
++++ src/mod_fastcgi.c Tue Feb 17 02:51:40 2009
+@@ -3636,12 +3636,21 @@ static handler_t fcgi_check_extension(server *srv,
con
+ * SCRIPT_NAME = /fcgi-bin/foo
+ * PATH_INFO = /bar
+ *
++ * if prefix = /
++ *
++ * /foo/bar
++ *
++ * SCRIPT_NAME =
++ * PATH_INFO = /foo/bar
++ *
+ */

- /* the rewrite is only done for /prefix/? matches */
- if (extension->key->ptr[0] == '/' &&
-- con->uri.path->used > extension->key->used &&
-- NULL != (pathinfo = strchr(con->uri.path->ptr +
extension->key->used - 1, '/'))) {
-+ /* Special case for "/" */
-+ ((extension->key->ptr[1] == '\0' && (pathinfo =
con->uri.path->ptr))
-+ || (con->uri.path->used > extension->key->used
&&
-+ NULL != (pathinfo = strchr(con->uri.path->ptr
+ extension->key->used - 1, '/'))))) {
- /* rewrite uri.path and pathinfo */
+ /* the rewrite is only done for /prefix/?
matches */
+ if (extension->key->ptr[0] == '/' &&
+- con->uri.path->used >
extension->key->used &&
+- NULL != (pathinfo =
strchr(con->uri.path->ptr + extension->key->used - 1, '/'))) {
++ /* Special case for "/" */
++ ((extension->key->ptr[1] == '\0' &&
(pathinfo = con->uri.path->ptr))
++ || (con->uri.path->used >
extension->key->used &&
++ NULL != (pathinfo =
strchr(con->uri.path->ptr + extension->key->used - 1, '/'))))) {
+ /* rewrite uri.path and pathinfo */

- buffer_copy_string(con->request.pathinfo,
pathinfo);
+
buffer_copy_string(con->request.pathinfo, pathinfo);



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (041fcc9a7c8366c7437b60aadd894d5c2cb6c4ee), Vlad Glagolev, 02/16/2009

Archive powered by MHonArc 2.6.24.

Top of Page