Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/eigen/files: eigen-ppc-define.patch
Date: Thu, 30 Jul 2009 18:12:43
Message-Id: E1MWa7N-0005A0-Pr@stork.gentoo.org
1 scarabeus 09/07/30 18:12:41
2
3 Added: eigen-ppc-define.patch
4 Log:
5 Version bump.
6 (Portage version: 2.2_rc33/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 dev-cpp/eigen/files/eigen-ppc-define.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/eigen/files/eigen-ppc-define.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/eigen/files/eigen-ppc-define.patch?rev=1.1&content-type=text/plain
13
14 Index: eigen-ppc-define.patch
15 ===================================================================
16 --- Eigen/src/Core/util/Macros.h.orig 2009-06-26 11:58:16.000000000 +0200
17 +++ Eigen/src/Core/util/Macros.h 2009-06-26 11:59:04.000000000 +0200
18 @@ -41,7 +41,7 @@
19 // because extra memory must be allocated for bookkeeping).
20 // if the compiler is not GNUC, just cross fingers that the architecture isn't too exotic, because we don't want
21 // to keep track of all the different preprocessor symbols for all compilers.
22 -#if !defined(__GNUC__) || defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__ia64__)
23 +#if !defined(__GNUC__) || defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__powerpc__) || defined(__ia64__)
24 #define EIGEN_ARCH_WANTS_ALIGNMENT 1
25 #else
26 #ifdef EIGEN_VECTORIZE