Hello community, here is the log from the commit of package libQtWebKit4 for openSUSE:Factory checked in at 2013-12-23 12:33:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libQtWebKit4 (Old) and /work/SRC/openSUSE:Factory/.libQtWebKit4.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libQtWebKit4" Changes: -------- --- /work/SRC/openSUSE:Factory/libQtWebKit4/libQtWebKit4.changes 2013-11-13 09:06:36.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.libQtWebKit4.new/libQtWebKit4.changes 2013-12-23 12:33:09.000000000 +0100 @@ -1,0 +2,5 @@ +Fri Dec 13 00:42:00 UTC 2013 - [email protected] + +- ppc64le-support.patch: Add powerpc64le-linux support. + +------------------------------------------------------------------- New: ---- ppc64le-support.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libQtWebKit4.spec ++++++ --- /var/tmp/diff_new_pack.13O0VW/_old 2013-12-23 12:33:10.000000000 +0100 +++ /var/tmp/diff_new_pack.13O0VW/_new 2013-12-23 12:33:10.000000000 +0100 @@ -52,6 +52,8 @@ Patch12: aarch64-support.patch # PATCH-FIX-UPSTREAM bison3.patch -- fixes compilation with bison3 Patch13: bison3.patch +# PATCH-FIX-UPSTREAM ppc64le-support.diff [email protected] -- add support for ppc64le +Patch14: ppc64le-support.patch BuildRequires: bison BuildRequires: fdupes BuildRequires: flex @@ -128,6 +130,7 @@ %endif %patch12 -p1 %patch13 -p1 +%patch14 -p1 %build # runs out of memory or creates static archives > 2/4GB boundary otherwise ++++++ ppc64le-support.patch ++++++ Index: webkit-qtwebkit-23/Source/WTF/wtf/Platform.h =================================================================== --- webkit-qtwebkit-23.orig/Source/WTF/wtf/Platform.h +++ webkit-qtwebkit-23/Source/WTF/wtf/Platform.h @@ -102,16 +102,22 @@ || defined(__POWERPC__) \ || defined(_M_PPC) \ || defined(__PPC) +#if !defined(__ppc64__) && !defined(__PPC64__) #define WTF_CPU_PPC 1 +#endif +#if !defined(__LITTLE_ENDIAN__) #define WTF_CPU_BIG_ENDIAN 1 #endif +#endif /* CPU(PPC64) - PowerPC 64-bit */ #if defined(__ppc64__) \ || defined(__PPC64__) #define WTF_CPU_PPC64 1 +#if !defined(__LITTLE_ENDIAN__) #define WTF_CPU_BIG_ENDIAN 1 #endif +#endif /* CPU(SH4) - SuperH SH-4 */ #if defined(__SH4__) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
