summaryrefslogtreecommitdiff
path: root/www/apache
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>1998-12-05 00:00:09 +0000
committertv <tv@pkgsrc.org>1998-12-05 00:00:09 +0000
commit109b5b2d81cc856680895c6d73b83551aa711694 (patch)
tree7d8f425b0d599b8e9f8de73733efebccfa27346c /www/apache
parent43c51910f1da174bd2d9b464f7ad884325111eb2 (diff)
downloadpkgsrc-109b5b2d81cc856680895c6d73b83551aa711694.tar.gz
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.
Diffstat (limited to 'www/apache')
-rw-r--r--www/apache/patches/patch-al13
1 files changed, 13 insertions, 0 deletions
diff --git a/www/apache/patches/patch-al b/www/apache/patches/patch-al
new file mode 100644
index 00000000000..21a94d4b7ce
--- /dev/null
+++ b/www/apache/patches/patch-al
@@ -0,0 +1,13 @@
+$NetBSD: patch-al,v 1.1 1998/12/05 00:00:09 tv Exp $
+
+--- src/os/unix/os.c.orig Fri Dec 4 18:53:48 1998
++++ src/os/unix/os.c Fri Dec 4 18:54:00 1998
+@@ -119,7 +119,7 @@
+ #elif defined(RHAPSODY)
+ NSUnLinkModule(handle,FALSE);
+
+-#else
++#elif 0
+ dlclose(handle);
+ #endif
+