diff options
author | heinz <heinz@pkgsrc.org> | 2007-10-02 16:20:05 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2007-10-02 16:20:05 +0000 |
commit | 83ae2b7b40ca87c73f8dcb75bc3119b4ec47b783 (patch) | |
tree | 5cafc624c5dc50a6ce9771b6d62b569fe386a4cf | |
parent | a59a83ecd3ee828319ae1b1117ec0223c47f4d42 (diff) | |
download | pkgsrc-83ae2b7b40ca87c73f8dcb75bc3119b4ec47b783.tar.gz |
Added NetBSD 3 to the list of platforms which need pthreads linked into
the application if it uses dlopen().
This change was triggered by the longstanding bug that mod_perl (due to
perl itself) was built with threads but apache was not, thus leading
to incompatibility between apache and mod_perl.
Whether NetBSD 4 needs to be added as well is still an open question.
-rw-r--r-- | mk/dlopen.builtin.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/dlopen.builtin.mk b/mk/dlopen.builtin.mk index 16c77b3ba83..ef0f6c28f82 100644 --- a/mk/dlopen.builtin.mk +++ b/mk/dlopen.builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: dlopen.builtin.mk,v 1.14 2005/06/26 13:11:22 minskim Exp $ +# $NetBSD: dlopen.builtin.mk,v 1.15 2007/10/02 16:20:05 heinz Exp $ BUILTIN_PKG:= dl @@ -47,7 +47,8 @@ _BLNK_DLOPEN_REQUIRE_PTHREAD_PLATFORMS= \ NetBSD-2.[0-9]_*-* \ NetBSD-2.[0-9]-* NetBSD-2.[0-9].[0-9]*-* \ NetBSD-2.[0-8][0-9]*-* NetBSD-2.9[0-8]*-* \ - NetBSD-2.99.[0-9]-* NetBSD-2.99.10-* + NetBSD-2.99.[0-9]-* NetBSD-2.99.10-* \ + NetBSD-3.[0-9]-* NetBSD-3.[0-9].[0-9]*-* .if !defined(_BLNK_DLOPEN_REQUIRE_PTHREADS) _BLNK_DLOPEN_REQUIRE_PTHREADS?= no |