Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Oct 2012 21:02:15 +0000 (UTC)
From:      Niclas Zeising <zeising@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r305605 - head/devel/binutils
Message-ID:  <201210092102.q99L2F9x081299@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zeising
Date: Tue Oct  9 21:02:14 2012
New Revision: 305605
URL: http://svn.freebsd.org/changeset/ports/305605

Log:
  Disable the gold linker when building on ia64.  It is not supported on this
  architecture, and having it enabled nontheless gives plist issues. [1]
  Fix plist when compiled with NLS support [2]
  Bump PORTREVISION since the plist changed.
  
  Reported by:	Anton Shterenlikht <mexas@bristol.ac.uk> (private mail) [1]
  		eadler, crees, makc (on irc) [2]
  Approved by:	kwm (mentor)

Modified:
  head/devel/binutils/Makefile
  head/devel/binutils/pkg-plist

Modified: head/devel/binutils/Makefile
==============================================================================
--- head/devel/binutils/Makefile	Tue Oct  9 20:59:37 2012	(r305604)
+++ head/devel/binutils/Makefile	Tue Oct  9 21:02:14 2012	(r305605)
@@ -3,7 +3,7 @@
 
 PORTNAME=	binutils
 PORTVERSION=	2.22
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 MASTER_SITES=	${MASTER_SITE_SOURCEWARE}
 MASTER_SITE_SUBDIR=	binutils/releases
@@ -68,7 +68,7 @@ INFO=		as \
 .include <bsd.port.options.mk>
 
 # Actual earliest version may differ slightly
-.if ${OSVERSION} >= 900044
+.if ${ARCH} != ia64 && ${OSVERSION} >= 900044
 CONFIGURE_ARGS+=	--enable-gold --enable-plugins
 PLIST_SUB+=	GOLD=""
 .else

Modified: head/devel/binutils/pkg-plist
==============================================================================
--- head/devel/binutils/pkg-plist	Tue Oct  9 20:59:37 2012	(r305604)
+++ head/devel/binutils/pkg-plist	Tue Oct  9 21:02:14 2012	(r305605)
@@ -43,6 +43,7 @@ lib/libopcodes.la
 %%NLS%%share/locale/es/LC_MESSAGES/gprof.mo
 %%NLS%%share/locale/es/LC_MESSAGES/ld.mo
 %%NLS%%share/locale/es/LC_MESSAGES/opcodes.mo
+%%NLS%%%%GOLD%%share/locale/es/LC_MESSAGES/gold.mo
 %%NLS%%share/locale/fi/LC_MESSAGES/bfd.mo
 %%NLS%%share/locale/fi/LC_MESSAGES/binutils.mo
 %%NLS%%share/locale/fi/LC_MESSAGES/gas.mo
@@ -55,6 +56,7 @@ lib/libopcodes.la
 %%NLS%%share/locale/fr/LC_MESSAGES/gprof.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/ld.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/opcodes.mo
+%%NLS%%%%GOLD%%share/locale/fi/LC_MESSAGES/gold.mo
 %%NLS%%share/locale/ga/LC_MESSAGES/gprof.mo
 %%NLS%%share/locale/ga/LC_MESSAGES/ld.mo
 %%NLS%%share/locale/ga/LC_MESSAGES/opcodes.mo
@@ -64,6 +66,7 @@ lib/libopcodes.la
 %%NLS%%share/locale/id/LC_MESSAGES/binutils.mo
 %%NLS%%share/locale/id/LC_MESSAGES/gas.mo
 %%NLS%%share/locale/id/LC_MESSAGES/ld.mo
+%%NLS%%%%GOLD%%share/locale/id/LC_MESSAGES/gold.mo
 %%NLS%%share/locale/ja/LC_MESSAGES/bfd.mo
 %%NLS%%share/locale/ja/LC_MESSAGES/binutils.mo
 %%NLS%%share/locale/ja/LC_MESSAGES/ld.mo
@@ -102,6 +105,7 @@ lib/libopcodes.la
 %%NLS%%share/locale/vi/LC_MESSAGES/gprof.mo
 %%NLS%%share/locale/vi/LC_MESSAGES/ld.mo
 %%NLS%%share/locale/vi/LC_MESSAGES/opcodes.mo
+%%NLS%%%%GOLD%%share/locale/vi/LC_MESSAGES/gold.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/bfd.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/binutils.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/ld.mo



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210092102.q99L2F9x081299>