diff options
author | tv <tv> | 1998-12-05 00:00:09 +0000 |
---|---|---|
committer | tv <tv> | 1998-12-05 00:00:09 +0000 |
commit | 4145d7a481ceffd799e6225981ae55300cb1415d (patch) | |
tree | 7d8f425b0d599b8e9f8de73733efebccfa27346c /www | |
parent | 63b9df0f50456cf9504c3090de11c9f2b1475a89 (diff) | |
download | pkgsrc-4145d7a481ceffd799e6225981ae55300cb1415d.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')
-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 + |