From owner-svn-ports-all@FreeBSD.ORG Fri Mar 29 15:20:54 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 04F515D0; Fri, 29 Mar 2013 15:20:54 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id EB54FABF; Fri, 29 Mar 2013 15:20:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2TFKrjw032777; Fri, 29 Mar 2013 15:20:53 GMT (envelope-from naddy@svn.freebsd.org) Received: (from naddy@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2TFKrcA032776; Fri, 29 Mar 2013 15:20:53 GMT (envelope-from naddy@svn.freebsd.org) Message-Id: <201303291520.r2TFKrcA032776@svn.freebsd.org> From: Christian Weisgerber Date: Fri, 29 Mar 2013 15:20:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315542 - head/multimedia/mplayer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Mar 2013 15:20:54 -0000 Author: naddy Date: Fri Mar 29 15:20:53 2013 New Revision: 315542 URL: http://svnweb.freebsd.org/changeset/ports/315542 Log: 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) Modified: head/multimedia/mplayer/Makefile.options Modified: head/multimedia/mplayer/Makefile.options ============================================================================== --- head/multimedia/mplayer/Makefile.options Fri Mar 29 14:13:20 2013 (r315541) +++ head/multimedia/mplayer/Makefile.options Fri Mar 29 15:20:53 2013 (r315542) @@ -74,7 +74,8 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- 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