summaryrefslogtreecommitdiff
path: root/lang/spidermonkey/patches
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2006-08-08 09:50:33 +0000
committertron <tron@pkgsrc.org>2006-08-08 09:50:33 +0000
commit5b9c03c4fa9710c32fd2bd90415a04cfa8095649 (patch)
tree68ac7b12efabd9201afd45d25e706aef76df66d4 /lang/spidermonkey/patches
parent999fc2ed87f8bb1c84a31876c0b450fb5585a2de (diff)
downloadpkgsrc-5b9c03c4fa9710c32fd2bd90415a04cfa8095649.tar.gz
Use correct share library suffix under Mac OS X (".dylib" instead of
".so") so that linking with the "libjs" shared library actually works. Bump package revision because of this fix.
Diffstat (limited to 'lang/spidermonkey/patches')
-rw-r--r--lang/spidermonkey/patches/patch-aa18
1 files changed, 15 insertions, 3 deletions
diff --git a/lang/spidermonkey/patches/patch-aa b/lang/spidermonkey/patches/patch-aa
index b477f431439..f34a91af6c8 100644
--- a/lang/spidermonkey/patches/patch-aa
+++ b/lang/spidermonkey/patches/patch-aa
@@ -1,7 +1,7 @@
-$NetBSD: patch-aa,v 1.2 2006/02/26 20:36:58 joerg Exp $
+$NetBSD: patch-aa,v 1.3 2006/08/08 09:50:33 tron Exp $
---- config.mk.orig 2003-11-15 01:10:55.000000000 +0100
-+++ config.mk 2006-01-27 20:42:30.000000000 +0100
+--- config.mk.orig 2003-11-15 00:10:55.000000000 +0000
++++ config.mk 2006-08-08 10:35:24.000000000 +0100
@@ -96,10 +96,26 @@
ifeq ($(OS_ARCH),Darwin)
OS_CONFIG := Darwin
@@ -29,3 +29,15 @@ $NetBSD: patch-aa,v 1.2 2006/02/26 20:36:58 joerg Exp $
ASFLAGS =
DEFINES =
+@@ -126,7 +142,11 @@
+ OBJDIR_TAG = _DBG
+ endif
+
++ifeq ($(OS_ARCH),Darwin)
++SO_SUFFIX = dylib
++else
+ SO_SUFFIX = so
++endif
+
+ NS_USE_NATIVE = 1
+