summaryrefslogtreecommitdiff
path: root/math/R
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2000-02-13 13:30:11 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2000-02-13 13:30:11 +0000
commitb3891101149d373125c0cb02dfa3ae33e782ee0e (patch)
tree57eb6174a419944873e933400a7762cbec46b973 /math/R
parentfe9ac2c3f29a19e86ce556870075b3d2b2465cf1 (diff)
downloadpkgsrc-b3891101149d373125c0cb02dfa3ae33e782ee0e.tar.gz
fix the flag passed to cc for generating shared libs on a.out machines.
(was -Bshareable, now is -shared) This fixes a compilation problem. ELF machines should not be affected.
Diffstat (limited to 'math/R')
-rw-r--r--math/R/files/patch-sum4
-rw-r--r--math/R/patches/patch-ab16
2 files changed, 9 insertions, 11 deletions
diff --git a/math/R/files/patch-sum b/math/R/files/patch-sum
index bc3e59af526..2d59e405484 100644
--- a/math/R/files/patch-sum
+++ b/math/R/files/patch-sum
@@ -1,7 +1,7 @@
-$NetBSD: patch-sum,v 1.3 2000/01/12 22:05:32 rh Exp $
+$NetBSD: patch-sum,v 1.4 2000/02/13 13:30:11 dmcmahill Exp $
MD5 (patch-aa) = f11a1756dbe1f0d3499cce6919f5fce5
-MD5 (patch-ab) = f7eba6b61875f0e55bc8edd1eca67c39
+MD5 (patch-ab) = 6f9dbcb59868c9e42b60de2aa2831376
MD5 (patch-ae) = 97a850f5efd0f91571361750e69b35eb
MD5 (patch-af) = 67bcec4540b994104ba99b35667f6d10
MD5 (patch-ag) = 62f3628549a1e9a4c1440e05548f2cb1
diff --git a/math/R/patches/patch-ab b/math/R/patches/patch-ab
index 08423e2bb5f..71ce50ab165 100644
--- a/math/R/patches/patch-ab
+++ b/math/R/patches/patch-ab
@@ -1,24 +1,22 @@
-$NetBSD: patch-ab,v 1.4 2000/01/12 22:05:32 rh Exp $
+$NetBSD: patch-ab,v 1.5 2000/02/13 13:30:12 dmcmahill Exp $
---- configure.orig Wed Dec 15 13:29:04 1999
-+++ configure Wed Jan 12 21:19:24 2000
-@@ -5377,9 +5377,10 @@
- ;;
+--- configure.orig Wed Dec 15 07:29:04 1999
++++ configure Sun Feb 13 00:16:46 2000
+@@ -5378,8 +5378,9 @@
*netbsd*)
if ${CPP} - -dM < /dev/null | grep -q __ELF__; then
- dllflags="-export-dynamic"
+ dllflags="${LDFLAGS} -export-dynamic"
shlibldflags="-shared"
else
+- shlibldflags="-Bshareable"
+ dllflags="${LDFLAGS}"
- shlibldflags="-Bshareable"
++ shlibldflags="-shared"
fi
;;
-@@ -6548,6 +6549,7 @@
- s%@AWK@%$AWK%g
+@@ -6549,4 +6550,5 @@
s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
s%@INSTALL_DATA@%$INSTALL_DATA%g
+s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g
s%@LN_S@%$LN_S%g
s%@RANLIB@%$RANLIB%g
- s%@YACC@%$YACC%g