svn commit: r300946 - head/multimedia/beep-media-player
Baptiste Daroussin
bapt at FreeBSD.org
Mon Jul 16 11:45:42 UTC 2012
Author: bapt
Date: Mon Jul 16 11:45:41 2012
New Revision: 300946
URL: http://svn.freebsd.org/changeset/ports/300946
Log:
Do not show 3DNOW option on i386 has is it not supported
Modified:
head/multimedia/beep-media-player/Makefile
Modified: head/multimedia/beep-media-player/Makefile
==============================================================================
--- head/multimedia/beep-media-player/Makefile Mon Jul 16 11:40:11 2012 (r300945)
+++ head/multimedia/beep-media-player/Makefile Mon Jul 16 11:45:41 2012 (r300946)
@@ -37,6 +37,8 @@ VISUALIZATION_PLUGINS= blur_scope
OPTIONS_DEFINE= VORBIS ESOUND 3DNOW IPV6
OTPIONS_DEFAULT= VORBIS 3DNOW
+OPTIONS_EXCLUDE_i386= 3DNOW
+
3DNOW_DESC= 3DNow! optimized decoding routines
.include <bsd.port.options.mk>
@@ -74,7 +76,7 @@ CONFIGURE_ARGS+= --disable-esd
PLIST_SUB+= ESDPLUGIN:="@comment "
.endif
-.if ${PORT_OPTIONS:M3DNOW} && ${ARCH} != "i386"
+.if ${PORT_OPTIONS:M3DNOW}
CONFIGURE_ARGS+= --enable-3dnow
.endif
More information about the svn-ports-all
mailing list