From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1P1Ui6-0001h2-Hx for garchives@archives.gentoo.org; Fri, 01 Oct 2010 01:46:56 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C177E0D29; Fri, 1 Oct 2010 01:46:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EC568E0D29 for ; Fri, 1 Oct 2010 01:46:50 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8AE8B1B4027 for ; Fri, 1 Oct 2010 01:46:50 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2139) id 5AEBD20051; Fri, 1 Oct 2010 01:46:48 +0000 (UTC) From: "Alexis Ballier (aballier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, aballier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: ffmpeg-9999.ebuild ChangeLog X-VCS-Directories: media-video/ffmpeg X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier Content-Type: text/plain; charset=utf8 Message-Id: <20101001014648.5AEBD20051@flycatcher.gentoo.org> Date: Fri, 1 Oct 2010 01:46:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: e8510c51-754f-4cdb-9b80-4191a944a57c X-Archives-Hash: e3f785ec2167ed20cbcd4690338c4557 aballier 10/10/01 01:46:48 Modified: ffmpeg-9999.ebuild ChangeLog Log: disable mmx and other asm if pic is requested on x86 only =20 (Portage version: 2.2_rc88/cvs/Linux x86_64) Revision Changes Path 1.22 media-video/ffmpeg/ffmpeg-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg= /ffmpeg-9999.ebuild?rev=3D1.22&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg= /ffmpeg-9999.ebuild?rev=3D1.22&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg= /ffmpeg-9999.ebuild?r1=3D1.21&r2=3D1.22 Index: ffmpeg-9999.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- ffmpeg-9999.ebuild 1 Oct 2010 00:56:44 -0000 1.21 +++ ffmpeg-9999.ebuild 1 Oct 2010 01:46:48 -0000 1.22 @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild= ,v 1.21 2010/10/01 00:56:44 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild= ,v 1.22 2010/10/01 01:46:48 aballier Exp $ =20 EAPI=3D"2" =20 @@ -158,8 +158,8 @@ use 3dnow || myconf=3D"${myconf} --disable-amd3dnow" use 3dnowext || myconf=3D"${myconf} --disable-amd3dnowext" # disable mmx accelerated code if PIC is required - # as the provided asm decidedly is not PIC. - if gcc-specs-pie ; then + # as the provided asm decidedly is not PIC for x86. + if use pic && use x86 ; then myconf=3D"${myconf} --disable-mmx --disable-mmx2" fi =20 1.373 media-video/ffmpeg/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg= /ChangeLog?rev=3D1.373&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg= /ChangeLog?rev=3D1.373&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg= /ChangeLog?r1=3D1.372&r2=3D1.373 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v retrieving revision 1.372 retrieving revision 1.373 diff -u -r1.372 -r1.373 --- ChangeLog 1 Oct 2010 00:56:44 -0000 1.372 +++ ChangeLog 1 Oct 2010 01:46:48 -0000 1.373 @@ -1,6 +1,9 @@ # ChangeLog for media-video/ffmpeg # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.372 = 2010/10/01 00:56:44 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.373 = 2010/10/01 01:46:48 aballier Exp $ + + 01 Oct 2010; Alexis Ballier ffmpeg-9999.ebuild: + disable mmx and other asm if pic is requested on x86 only =20 01 Oct 2010; Alexis Ballier ffmpeg-9999.ebuild, metadata.xml: