From bf57e0090a2df73e4140acbbcd56242ac05eaf6c Mon Sep 17 00:00:00 2001 From: Christian Weisgerber Date: Fri, 29 Mar 2013 15:20:53 +0000 Subject: [PATCH] Also disable the use of SSE4/SSE4.2/AVX instructions when using the old toolchain. Fixes the build on 8.4 i386. Submitted by: Thomas Zander (maintainer) --- multimedia/mplayer/Makefile.options | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/multimedia/mplayer/Makefile.options b/multimedia/mplayer/Makefile.options index 8a25ec1873e6..59dd4beeae83 100644 --- a/multimedia/mplayer/Makefile.options +++ b/multimedia/mplayer/Makefile.options @@ -74,7 +74,8 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch-clang-version USE_GCC?= 4.6+ BUILD_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils .else -CONFIGURE_ARGS+=--disable-ssse3 --disable-fast-cmov +CONFIGURE_ARGS+=--disable-ssse3 --disable-sse4 --disable-sse42 \ + --disable-avx --disable-fast-cmov EXTRA_PATCHES+= ${FILESDIR}/extra-patch-base_system_gcc .if ${ARCH} == "amd64" BUILD_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils