vlc: Disable altivec on ppc

This commit is contained in:
Thomas Batten 2019-05-03 12:57:38 +09:30 committed by Helmut Pozimski
parent e6dbcfbb16
commit fa0b71a181

View file

@ -48,6 +48,11 @@ case "$XBPS_TARGET_MACHINE" in
# Enable x265, opengl and samba by default on x86 and ppc64.
build_options_default+=" vaapi vdpau opengl"
;;
ppc|ppc-musl)
# Disable altivec on ppc and enable opengl
configure_args+=" --disable-altivec"
build_options_default+=" opengl"
;;
armv[67]l*)
# XXX only for rpi
configure_args+=" --enable-omxil --enable-omxil-vout --enable-rpi-omxil"