svn commit: r377353 - head/audio/beast

Gerald Pfeifer gerald at FreeBSD.org
Sun Jan 18 22:23:45 UTC 2015


Author: gerald
Date: Sun Jan 18 22:23:44 2015
New Revision: 377353
URL: https://svnweb.freebsd.org/changeset/ports/377353
QAT: https://qat.redports.org/buildarchive/r377353/

Log:
  Require building with GCC 4.8 due to non-conforming C++ code.
  
  PR:		196849, 196712

Modified:
  head/audio/beast/Makefile

Modified: head/audio/beast/Makefile
==============================================================================
--- head/audio/beast/Makefile	Sun Jan 18 22:21:43 2015	(r377352)
+++ head/audio/beast/Makefile	Sun Jan 18 22:23:44 2015	(r377353)
@@ -24,7 +24,8 @@ OPTIONS_DEFINE_i386=	SSE
 
 USES=		desktop-file-utils gettext gmake libtool pathfix pkgconfig shared-mime-info shebangfix tar:bzip2
 SHEBANG_FILES=	autotools/intltool-merge
-USE_GCC=	yes
+# Fails to build with GCC 4.9, cf. PR 196849.
+USE_GCC=	4.8
 USE_GNOME=	libgnomecanvas
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-silent-rules \


More information about the svn-ports-all mailing list