summaryrefslogtreecommitdiff
path: root/lang/gforth
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2013-06-13 21:43:26 +0000
committerjoerg <joerg@pkgsrc.org>2013-06-13 21:43:26 +0000
commit3f3e244ec63e725687f9762e0f6679da8cd72d1c (patch)
tree61f34a9845ce80480a57c4296d40ee1d0dcda691 /lang/gforth
parent263a9d4a1a474e5dbb3cd5e65db1afbb4c3fa873 (diff)
downloadpkgsrc-3f3e244ec63e725687f9762e0f6679da8cd72d1c.tar.gz
-export-dynamic is a linker option, pass it down as such.
Diffstat (limited to 'lang/gforth')
-rw-r--r--lang/gforth/distinfo4
-rw-r--r--lang/gforth/patches/patch-configure18
-rw-r--r--lang/gforth/patches/patch-configure.in16
3 files changed, 37 insertions, 1 deletions
diff --git a/lang/gforth/distinfo b/lang/gforth/distinfo
index e92abe6895f..0cb4701ed9b 100644
--- a/lang/gforth/distinfo
+++ b/lang/gforth/distinfo
@@ -1,7 +1,9 @@
-$NetBSD: distinfo,v 1.7 2011/03/29 21:19:19 asau Exp $
+$NetBSD: distinfo,v 1.8 2013/06/13 21:43:26 joerg Exp $
SHA1 (gforth-0.7.0.tar.gz) = 5bb357268cba683f2a8c63d2a4bcab8f41cb0086
RMD160 (gforth-0.7.0.tar.gz) = df0cef8cff25eddf670315c5497fc5634226968c
Size (gforth-0.7.0.tar.gz) = 2277918 bytes
SHA1 (patch-aa) = 88811b03619a597d202105c89b659576a9fd34b2
SHA1 (patch-ae) = 5ed4c1b54d6c2af55580183cdc9d66b70fffa955
+SHA1 (patch-configure) = e6cf2ba54f5a6492943220a2a8b12e887dcfa527
+SHA1 (patch-configure.in) = 4886054414beda7de68323143eecb03ef20c10f9
diff --git a/lang/gforth/patches/patch-configure b/lang/gforth/patches/patch-configure
new file mode 100644
index 00000000000..bcfa7a13815
--- /dev/null
+++ b/lang/gforth/patches/patch-configure
@@ -0,0 +1,18 @@
+$NetBSD: patch-configure,v 1.1 2013/06/13 21:43:26 joerg Exp $
+
+--- configure.orig 2013-06-13 17:12:24.000000000 +0000
++++ configure
+@@ -3984,10 +3984,10 @@ test "$make_type" = "GNU Make" && GNUMAK
+ echo "${ECHO_T}$make_type" >&6; }
+
+
+-{ echo "$as_me:$LINENO: checking whether the linker accepts -export-dynamic" >&5
+-echo $ECHO_N "checking whether the linker accepts -export-dynamic... $ECHO_C" >&6; }
++{ echo "$as_me:$LINENO: checking whether the linker accepts -Wl,-export-dynamic" >&5
++echo $ECHO_N "checking whether the linker accepts -Wl,-export-dynamic... $ECHO_C" >&6; }
+ OLDLDFLAGS=$LDFLAGS
+-LDFLAGS="$LDFLAGS -export-dynamic"
++LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
+ if test "$cross_compiling" = yes; then
+ ac_export_dynamic=no
+ else
diff --git a/lang/gforth/patches/patch-configure.in b/lang/gforth/patches/patch-configure.in
new file mode 100644
index 00000000000..3e28b8fa65e
--- /dev/null
+++ b/lang/gforth/patches/patch-configure.in
@@ -0,0 +1,16 @@
+$NetBSD: patch-configure.in,v 1.1 2013/06/13 21:43:26 joerg Exp $
+
+--- configure.in.orig 2013-06-13 17:24:38.000000000 +0000
++++ configure.in
+@@ -182,9 +182,9 @@ test "$make_type" = "GNU Make" && GNUMAK
+ AC_MSG_RESULT($make_type)
+ AC_SUBST(GNUMAKE)
+
+-AC_MSG_CHECKING([whether the linker accepts -export-dynamic])
++AC_MSG_CHECKING([whether the linker accepts -Wl,-export-dynamic])
+ OLDLDFLAGS=$LDFLAGS
+-LDFLAGS="$LDFLAGS -export-dynamic"
++LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
+ dnl AC_TRY_LINK gives false positive on rs6000-ibm-aix4.2.1.0
+ dnl AC_TRY_LINK(,,ac_export_dynamic=yes,ac_export_dynamic=no)
+ AC_TRY_RUN(main(){exit(0);},ac_export_dynamic=yes,ac_export_dynamic=no,ac_export_dynamic=no)