pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/pkgsrc-2004Q2]: pkgsrc Pullup ticket 87 to the pkgsrc-2004Q2 branch, ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9f7afbd0b50d
branches:  pkgsrc-2004Q2
changeset: 476757:9f7afbd0b50d
user:      agc <agc%pkgsrc.org@localhost>
date:      Fri Jul 30 16:06:57 2004 +0000

description:
Pullup ticket 87 to the pkgsrc-2004Q2 branch, requested by Grant Beattie

Solaris fix for buildlink3

        Module Name:    pkgsrc
        Committed By:   grant
        Date:           Sat Jul 10 12:55:08 UTC 2004

        Modified Files:
                pkgsrc/mk/buildlink3: sunpro-cc-post-logic

        Log Message:
        explicitly don't transform "-Wl,*", fixing a bug that meant we were
        throwing away all -W arguments that weren't -Wl,-R.

        fixes building of a number of packages on Solaris.

diffstat:

 doc/CHANGES-pkgsrc-2004Q2          |  4 +++-
 mk/buildlink3/sunpro-cc-post-logic |  6 +++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diffs (36 lines):

diff -r 4a77ad98ed31 -r 9f7afbd0b50d doc/CHANGES-pkgsrc-2004Q2
--- a/doc/CHANGES-pkgsrc-2004Q2 Fri Jul 30 16:03:44 2004 +0000
+++ b/doc/CHANGES-pkgsrc-2004Q2 Fri Jul 30 16:06:57 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-pkgsrc-2004Q2,v 1.1.2.50 2004/07/30 16:03:44 agc Exp $
+$NetBSD: CHANGES-pkgsrc-2004Q2,v 1.1.2.51 2004/07/30 16:06:57 agc Exp $
 
 Changes to the packages collection and infrastructure on the
 pkgsrc-2004Q2 branch:
@@ -96,4 +96,6 @@
        Solaris fix for gtkmagnetic
 Pullup ticket 86, requested by Grant Beattie [agc 2004-07-30]
        Build fix for gopher
+Pullup ticket 87, requested by Grant Beattie [agc 2004-07-30]
+       Solaris fix for buildlink3
 
diff -r 4a77ad98ed31 -r 9f7afbd0b50d mk/buildlink3/sunpro-cc-post-logic
--- a/mk/buildlink3/sunpro-cc-post-logic        Fri Jul 30 16:03:44 2004 +0000
+++ b/mk/buildlink3/sunpro-cc-post-logic        Fri Jul 30 16:06:57 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: sunpro-cc-post-logic,v 1.8.2.1 2004/07/13 14:00:16 agc Exp $
+# $NetBSD: sunpro-cc-post-logic,v 1.8.2.2 2004/07/30 16:06:57 agc Exp $
 #
 # Silently accept some GCC compiler arguments by silently converting
 # them to the SunPro compiler equivalents.  This makes the SunPro
@@ -28,6 +28,10 @@
        arg=`$echo "X$arg" | $Xsed -e "s|^-Wl,||g" -e "s|,| |g"`
        addtoprivatecache=yes
        ;;
+-Wl,*)
+       # Explicitly do nothing to preserve arguments to be passed to
+       # the linker.
+       ;;
 -W*)
        # In fact, SunPro compilers don't even understand any -W*
        # arguments, so just silently ignore them all.



Home | Main Index | Thread Index | Old Index