diff options
author | tv <tv@pkgsrc.org> | 1998-12-05 00:00:09 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1998-12-05 00:00:09 +0000 |
commit | 109b5b2d81cc856680895c6d73b83551aa711694 (patch) | |
tree | 7d8f425b0d599b8e9f8de73733efebccfa27346c /www/apache | |
parent | 43c51910f1da174bd2d9b464f7ad884325111eb2 (diff) | |
download | pkgsrc-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-al | 13 |
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 + |