diff options
author | tnn <tnn@pkgsrc.org> | 2009-09-20 06:44:35 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2009-09-20 06:44:35 +0000 |
commit | bdcfbfef368cc2f90c2d696e7faf5e5a36eb6efc (patch) | |
tree | c5894d29911bbb09276d110729eac69e13980f98 /devel | |
parent | ec535154ee183b08e62b0f9eee013b95d237c995 (diff) | |
download | pkgsrc-bdcfbfef368cc2f90c2d696e7faf5e5a36eb6efc.tar.gz |
nsStackWalk.cpp uses dladdr, should include <dlfcn.h>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/xulrunner/distinfo | 3 | ||||
-rw-r--r-- | devel/xulrunner/patches/patch-ax | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/devel/xulrunner/distinfo b/devel/xulrunner/distinfo index f5aff2a60b8..3b16c37b920 100644 --- a/devel/xulrunner/distinfo +++ b/devel/xulrunner/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2009/09/13 20:02:35 tnn Exp $ +$NetBSD: distinfo,v 1.9 2009/09/20 06:44:35 tnn Exp $ SHA1 (xulrunner-1.9.1.3-source.tar.bz2) = 83b2625eb74e81b473ac40ac52505e5fc9a497eb RMD160 (xulrunner-1.9.1.3-source.tar.bz2) = c2487c90b4a9490840817c7b00dcccd68a0c4422 @@ -26,6 +26,7 @@ SHA1 (patch-at) = 2d09714ba426632a5d67b1b100c2ac4d1e673536 SHA1 (patch-au) = f27b6c8b2c744da388e1d15d0776929e7165ee76 SHA1 (patch-av) = e22c544894123a6ab8fc428067716b9e68685771 SHA1 (patch-aw) = eed2f98b732fa776d2ca64d2b82e88677a207657 +SHA1 (patch-ax) = ee637cf2a74cd058a61471172d77c5d944b8292e SHA1 (patch-ma) = a20b263ff14c841fd0ae1634962b90a41173b524 SHA1 (patch-mb) = 05298c1ec02363ff0bada87337cf0ccb5b42c55b SHA1 (patch-md) = 6bf5242245b17fbd868a6a978eb5849726f81393 diff --git a/devel/xulrunner/patches/patch-ax b/devel/xulrunner/patches/patch-ax new file mode 100644 index 00000000000..77d26dd38b0 --- /dev/null +++ b/devel/xulrunner/patches/patch-ax @@ -0,0 +1,13 @@ +$NetBSD: patch-ax,v 1.1 2009/09/20 06:44:36 tnn Exp $ + +--- xpcom/base/nsStackWalk.cpp.orig 2009-08-24 17:53:27.000000000 +0200 ++++ xpcom/base/nsStackWalk.cpp +@@ -1394,6 +1394,8 @@ NS_FormatCodeAddressDetails(void *aPC, c + + #else // not __sun-specific + ++#include <dlfcn.h> ++ + #if (defined(linux) && defined(__GNUC__) && (defined(__i386) || defined(PPC))) || (defined(XP_MACOSX) && (defined(__i386) || defined(__ppc__))) // i386 or PPC Linux or Mac stackwalking code + + #if __GLIBC__ > 2 || __GLIBC_MINOR > 1 |