summaryrefslogtreecommitdiff
path: root/www/apache/patches/patch-ag
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-02-02 16:39:56 +0000
committerjlam <jlam@pkgsrc.org>2001-02-02 16:39:56 +0000
commitec0d4b522cc2b897f1937bf06e2caff778e47a4e (patch)
tree933d229d6f2f2d659287e3b771e9de3175366fa2 /www/apache/patches/patch-ag
parent78c02f0693ed545e3ed476cc85f6b6b0ca57720d (diff)
downloadpkgsrc-ec0d4b522cc2b897f1937bf06e2caff778e47a4e.tar.gz
Update apache to 1.3.17. Important changes from version 1.3.14 include:
-) Remove patch to avoid dlclose()ing on NetBSD. The mod_perl vs. perl CGI mis-interaction seems to be gone and I wasn't able to reproduce it on my system. *) Fix the declaration of the module structure in mod_example. *) Fix the handling of variable expansion look-ahead in mod_rewrite, i.e. syntax like %{LA-U:REMOTE_USER}, and also fix the parsing of more complicated nested RewriteMap lookups. *) mod_status now respects ?refresh=n of 1 or greater. If the given refresh value is not a number, ?refresh is set to 1 second. *) Accomodate an out-of-space condition in the piped logs and the rotatelogs.c code, and no longer churn log processes for this condition. *) Make cgi-bin work as a regular directory when using mod_vhost_alias with no VirtualScriptAlias directives. *) Move the check of the Expect request header field after the hook for ap_post_read_request, since that is the only opportunity for modules to handle Expect extensions. *) Eliminate caching problems of mod_autoindex results, so the last modified date of the directory is returned as the Last-Modified and ETag HTTP header tags are sent if IndexOptions TrackModified directive/option is used. *) Correct an issue with Alias and ScriptAlias directives that file path arguments were not normalized in canonical form. This correction makes no attempt to normalize regular expression forms of Alias or ScriptAlias. *) Add a new LogFormat directive, %c, that will log connection status at the end of the response. *) Update the mime.types file to the registered media types as of 2000-10-19. *) Restore functionality broken by the mod_rewrite security fix: rewrite map lookup keys and default values are now expanded so that the lookup can depend on the requested URI etc.
Diffstat (limited to 'www/apache/patches/patch-ag')
-rw-r--r--www/apache/patches/patch-ag18
1 files changed, 0 insertions, 18 deletions
diff --git a/www/apache/patches/patch-ag b/www/apache/patches/patch-ag
deleted file mode 100644
index aae9bc10a41..00000000000
--- a/www/apache/patches/patch-ag
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-ag,v 1.4 2000/09/12 14:17:32 jlam Exp $
-
---- src/os/unix/os.c.orig Sat Jan 15 11:01:09 2000
-+++ src/os/unix/os.c
-@@ -129,7 +129,12 @@
- #elif defined(HAVE_DYLD)
- NSUnLinkModule(handle,FALSE);
-
--#else
-+/*
-+ * Work around Apache dlclose() bug, where shared objects may be
-+ * dlclose()d before their cleanup procedures are called.
-+ * Fixes mod_perl vs. CGI interaction bug.
-+ */
-+#elif 0
- dlclose(handle);
- #endif
-