From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from <gentoo-commits+bounces-69616-garchives=archives.gentoo.org@lists.gentoo.org>) id 1K2MfM-0003f4-4E for garchives@archives.gentoo.org; Sat, 31 May 2008 08:42:20 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81E7AE0403; Sat, 31 May 2008 08:42:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5F022E0403 for <gentoo-commits@lists.gentoo.org>; Sat, 31 May 2008 08:42:19 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id E6A7166FC8 for <gentoo-commits@lists.gentoo.org>; Sat, 31 May 2008 08:42:18 +0000 (UTC) Received: from aballier by stork.gentoo.org with local (Exim 4.69) (envelope-from <aballier@gentoo.org>) id 1K2MfG-0004U3-Ou for gentoo-commits@lists.gentoo.org; Sat, 31 May 2008 08:42:14 +0000 From: "Alexis Ballier (aballier)" <aballier@gentoo.org> 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/vlc/files: 0001-Include-altivec.h-before-any-other-vlc-header-as-inc.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: 0001-Include-altivec.h-before-any-other-vlc-header-as-inc.patch X-VCS-Directories: media-video/vlc/files X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier Content-Type: text/plain; charset=utf8 Message-Id: <E1K2MfG-0004U3-Ou@stork.gentoo.org> Sender: Alexis Ballier <aballier@stork.gentoo.org> Date: Sat, 31 May 2008 08:42:14 +0000 Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 418e997d-9847-4007-826a-a65246e9ef51 X-Archives-Hash: 154734ae123a71310f84b800db4854c8 aballier 08/05/31 08:42:14 Added: =20 0001-Include-altivec.h-before-any-other-vlc-heade= r-as-inc.patch Log: Add a patch to fix build failures on altivec ppc, thanks to vapier in b= ug #224289. (Portage version: 2.1.5.2) Revision Changes Path 1.1 media-video/vlc/files/0001-Include-altivec.h-before-= any-other-vlc-header-as-inc.patch file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/fi= les/0001-Include-altivec.h-before-any-other-vlc-header-as-inc.patch?rev=3D= 1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/fi= les/0001-Include-altivec.h-before-any-other-vlc-header-as-inc.patch?rev=3D= 1.1&content-type=3Dtext/plain Index: 0001-Include-altivec.h-before-any-other-vlc-header-as-inc.patch =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 >From 8e52e60b3fe3c9f416cbef521367f9e7259c2ed6 Mon Sep 17 00:00:00 2001 From: Alexis Ballier <aballier@gentoo.org> Date: Sat, 31 May 2008 10:14:02 +0200 Subject: [PATCH] Include altivec.h before any other vlc header as includi= ng it after stdbool will cause compile failures as pointed by Mike Frysin= ger in https://bugs.gentoo.org/show_bug.cgi?id=3D224289 --- modules/video_filter/deinterlace.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/video_filter/deinterlace.c b/modules/video_filter/de= interlace.c index 5dc4eeb..e65a7df 100644 --- a/modules/video_filter/deinterlace.c +++ b/modules/video_filter/deinterlace.c @@ -30,16 +30,16 @@ # include "config.h" #endif =20 +#ifdef HAVE_ALTIVEC_H +# include <altivec.h> +#endif + #include <vlc/vlc.h> #include <vlc_plugin.h> #include <vlc_vout.h> #include <vlc_sout.h> #include "vlc_filter.h" =20 -#ifdef HAVE_ALTIVEC_H -# include <altivec.h> -#endif - #ifdef CAN_COMPILE_MMXEXT # include "mmx.h" #endif --=20 1.5.5.1 --=20 gentoo-commits@lists.gentoo.org mailing list