From: Samuel Martin Date: Sat, 8 Feb 2014 14:34:55 +0000 (+0100) Subject: vlc: enable altivec support only when appropriate X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c2534c50cbd82bcb18dca4f22835a7b461d4083;p=buildroot.git vlc: enable altivec support only when appropriate All PowerPC CPUs do not support altivec instruction set; so enable its support only when the sub-architecture support it. Signed-off-by: Samuel Martin Signed-off-by: Peter Korsgaard --- diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk index b184de34e4..2730f07980 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -32,6 +32,13 @@ VLC_CONF_OPT += \ --disable-vsxu \ --disable-mtp +# Set powerpc altivec appropriately +ifeq ($(BR2_powerpc_7400)$(BR2_powerpc_7450)$(BR2_powerpc_970),y) +VCL_CONF_OPT += --enable-altivec +else +VLC_CONF_OPT += --disable-altivec +endif + ifeq ($(BR2_PACKAGE_ALSA_LIB),y) VLC_CONF_OPT += --enable-alsa VLC_DEPENDENCIES += alsa-lib