Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Jul 2012 11:45:41 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r300946 - head/multimedia/beep-media-player
Message-ID:  <201207161145.q6GBjf9F037890@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207161145.q6GBjf9F037890>