svn commit: r377491 - head/lang/nhc98

Gerald Pfeifer gerald at FreeBSD.org
Tue Jan 20 00:13:22 UTC 2015


Author: gerald
Date: Tue Jan 20 00:13:22 2015
New Revision: 377491
URL: https://svnweb.freebsd.org/changeset/ports/377491
QAT: https://qat.redports.org/buildarchive/r377491/

Log:
  This fails to properly build with GCC 4.9, so force GCC 4.8 for the
  time being.
  
  PR:		196857
  Approved by:	pgj (maintainer)

Modified:
  head/lang/nhc98/Makefile

Modified: head/lang/nhc98/Makefile
==============================================================================
--- head/lang/nhc98/Makefile	Tue Jan 20 00:01:15 2015	(r377490)
+++ head/lang/nhc98/Makefile	Tue Jan 20 00:13:22 2015	(r377491)
@@ -17,7 +17,8 @@ ONLY_FOR_ARCHS=	i386
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
 USES=		gmake
-USE_GCC=	yes
+# Fails to build with GCC 4.9, cf. PR 196857.
+USE_GCC=	4.8
 
 HAS_CONFIGURE=		yes
 CONFIGURE_ARGS+=	--prefix=${PREFIX} --heap=4M


More information about the svn-ports-all mailing list