Skip to Content.
Sympa Menu

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

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 (207450bf819a4c3eae13a34651c766841ecb4d69)
  • Date: Tue, 30 Sep 2008 03:01:45 -0500

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

http/lighttpd/HISTORY | 3 +--
http/lighttpd/PRE_BUILD | 4 ----
http/lighttpd/fastcgi.patch | 27 ---------------------------
3 files changed, 1 insertion(+), 33 deletions(-)

New commits:
commit 207450bf819a4c3eae13a34651c766841ecb4d69
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

removed useless patch: this issue is already fixed (by adding
fix-root-scriptname env var in config) :)

diff --git a/http/lighttpd/HISTORY b/http/lighttpd/HISTORY
index 97e9d72..4c94fbd 100644
--- a/http/lighttpd/HISTORY
+++ b/http/lighttpd/HISTORY
@@ -1,8 +1,7 @@
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
+ * PRE_BUILD: removed; everything's fixed by upstream
* memory.leak.patch, mod_fastcgi.patch, mod_scgi.patch: removed
- * fastcgi.patch: added

2008-09-29 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: SECURITY_PATCH+=1 (http://secunia.com/advisories/32069/);
diff --git a/http/lighttpd/PRE_BUILD b/http/lighttpd/PRE_BUILD
deleted file mode 100755
index ffc84c4..0000000
--- a/http/lighttpd/PRE_BUILD
+++ /dev/null
@@ -1,4 +0,0 @@
-default_pre_build &&
-cd "$SOURCE_DIRECTORY" &&
-
-patch -p0 < "$SPELL_DIRECTORY/fastcgi.patch"
diff --git a/http/lighttpd/fastcgi.patch b/http/lighttpd/fastcgi.patch
deleted file mode 100644
index 2f235ec..0000000
--- a/http/lighttpd/fastcgi.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- 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
- *
- */
-
- /* 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);



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (207450bf819a4c3eae13a34651c766841ecb4d69), Vlad Glagolev, 09/30/2008

Archive powered by MHonArc 2.6.24.

Top of Page