svn commit: r377368 - head/devel/libcwd

Gerald Pfeifer gerald at FreeBSD.org
Sun Jan 18 22:49:06 UTC 2015


Author: gerald
Date: Sun Jan 18 22:49:05 2015
New Revision: 377368
URL: https://svnweb.freebsd.org/changeset/ports/377368
QAT: https://qat.redports.org/buildarchive/r377368/

Log:
  Fails to build with newer versions of GCC (4.9 and above) due to
  non-compliant C++ code.
  
  PR:		196852, 196712

Modified:
  head/devel/libcwd/Makefile

Modified: head/devel/libcwd/Makefile
==============================================================================
--- head/devel/libcwd/Makefile	Sun Jan 18 22:49:04 2015	(r377367)
+++ head/devel/libcwd/Makefile	Sun Jan 18 22:49:05 2015	(r377368)
@@ -11,7 +11,8 @@ MAINTAINER=	ports at FreeBSD.org
 COMMENT=	C++ Debugging Support Library
 
 USES=		gmake pathfix pkgconfig libtool
-USE_GCC=	any
+# Fails to build with GCC 4.9, cf. PR 196852
+USE_GCC=	4.8
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-alloc --disable-location --disable-threading \
 		--disable-pch


More information about the svn-ports-all mailing list