svn commit: r345671 - head/lang/gcc46

Gerald Pfeifer gerald at FreeBSD.org
Sat Feb 22 18:01:23 UTC 2014


Author: gerald
Date: Sat Feb 22 18:01:22 2014
New Revision: 345671
URL: http://svnweb.freebsd.org/changeset/ports/345671
QAT: https://qat.redports.org/buildarchive/r345671/

Log:
  No longer add -I${LOCALBASE}/include to CFLAGS.
  
  Since we now configure with --with-gmp=${LOCALBASE} this is no longer
  necessary, and due to bugs in binutils (which should not install ansidecl.h
  into ${PREFIX}/include, fixed with revision 336642 [1]) and GCC (which
  should search its own include directories with higher priority) could
  lead to build failures.
  
  Set the license to a combination of GPLv3 (for the compiler itself) and
  GPLv3 with GCC Runtime Library Exception (for the runtime).
  
  PR:		184327 [1]

Modified:
  head/lang/gcc46/Makefile

Modified: head/lang/gcc46/Makefile
==============================================================================
--- head/lang/gcc46/Makefile	Sat Feb 22 17:29:26 2014	(r345670)
+++ head/lang/gcc46/Makefile	Sat Feb 22 18:01:22 2014	(r345671)
@@ -13,6 +13,9 @@ DISTNAME=	gcc-${DISTVERSION}
 MAINTAINER=	gerald at FreeBSD.org
 COMMENT=	GNU Compiler Collection 4.6
 
+LICENSE=	GPLv3 GPLv3RLE
+LICENSE_COMB=	multi
+
 LIB_DEPENDS=	libgmp.so:${PORTSDIR}/math/gmp \
 		libmpfr.so:${PORTSDIR}/math/mpfr \
 		libmpc.so:${PORTSDIR}/math/mpc
@@ -61,7 +64,6 @@ WRKSRC=		${WRKDIR}/build
 TARGLIB=	${PREFIX}/lib/gcc${SUFFIX}
 LIBEXEC=	${PREFIX}/libexec/gcc${SUFFIX}
 GNU_CONFIGURE=	yes
-CFLAGS+=	-I${LOCALBASE}/include
 .if empty(PORT_OPTIONS:MBOOTSTRAP)
 CONFIGURE_ARGS+=--disable-bootstrap
 .else


More information about the svn-ports-all mailing list