diff options
author | gerald <gerald@FreeBSD.org> | 2015-01-19 06:23:44 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2015-01-19 06:23:44 +0800 |
commit | efda7a4d24144f9ccc03c921358300fb8086a665 (patch) | |
tree | 4def30607375f096c957c29bb98f1c42c1d4321e /audio | |
parent | 1762b9bb282a8bc2a8c8ef59d59400046cf8f4ee (diff) | |
download | freebsd-ports-gnome-efda7a4d24144f9ccc03c921358300fb8086a665.tar.gz freebsd-ports-gnome-efda7a4d24144f9ccc03c921358300fb8086a665.tar.zst freebsd-ports-gnome-efda7a4d24144f9ccc03c921358300fb8086a665.zip |
Require building with GCC 4.8 due to non-conforming C++ code.
PR: 196849, 196712
Diffstat (limited to 'audio')
-rw-r--r-- | audio/beast/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/beast/Makefile b/audio/beast/Makefile index 5b3ff9706bf2..03452d095be6 100644 --- a/audio/beast/Makefile +++ b/audio/beast/Makefile @@ -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 \ |