diff options
author | danfe <danfe@FreeBSD.org> | 2011-11-20 04:23:54 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2011-11-20 04:23:54 +0800 |
commit | 228be7805d36949df9b0d007496e6ea750a7b313 (patch) | |
tree | 8d8c63991824451f03c3c5adbc7b67eac47ff926 /audio/deadbeef | |
parent | 569592260a5c4b61877f677401d879c28f5d7d75 (diff) | |
download | freebsd-ports-gnome-228be7805d36949df9b0d007496e6ea750a7b313.tar.gz freebsd-ports-gnome-228be7805d36949df9b0d007496e6ea750a7b313.tar.zst freebsd-ports-gnome-228be7805d36949df9b0d007496e6ea750a7b313.zip |
Reduce GCC 4.5+ requirement to amd64 only.
PR: ports/162683
Submitted by: maintainer
Feature safe: yes
Diffstat (limited to 'audio/deadbeef')
-rw-r--r-- | audio/deadbeef/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/audio/deadbeef/Makefile b/audio/deadbeef/Makefile index b71101bf0054..0996784942de 100644 --- a/audio/deadbeef/Makefile +++ b/audio/deadbeef/Makefile @@ -22,7 +22,6 @@ LIB_DEPENDS= samplerate.1:${PORTSDIR}/audio/libsamplerate \ GNU_CONFIGURE= yes USE_GETTEXT= yes USE_GMAKE= yes -USE_GCC= 4.5+ USE_LDCONFIG= yes USE_BZIP2= yes USE_ICONV= yes @@ -70,6 +69,10 @@ OPTIONS= PULSE "PulseAudio output plugin (unsupported)" off\ .include <bsd.port.options.mk> +.if ${ARCH} == "amd64" +USE_GCC= 4.5+ +.endif + .if defined(WITHOUT_PULSE) CONFIGURE_ARGS+= --disable-pulse PLIST_SUB+= PULSE="@comment " |