Hello community, here is the log from the commit of package libqt5-qtwebkit for openSUSE:Factory checked in at 2013-12-23 12:32:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libqt5-qtwebkit (Old) and /work/SRC/openSUSE:Factory/.libqt5-qtwebkit.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtwebkit" Changes: -------- --- /work/SRC/openSUSE:Factory/libqt5-qtwebkit/libqt5-qtwebkit.changes 2013-12-19 12:46:31.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.libqt5-qtwebkit.new/libqt5-qtwebkit.changes 2013-12-23 12:32:43.000000000 +0100 @@ -1,0 +2,5 @@ +Tue Dec 17 01:23:02 UTC 2013 - [email protected] + +- Add ppc64le-support.patch: Support powerpc64le-linux. + +------------------------------------------------------------------- New: ---- ppc64le-support.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libqt5-qtwebkit.spec ++++++ --- /var/tmp/diff_new_pack.sCM20i/_old 2013-12-23 12:32:44.000000000 +0100 +++ /var/tmp/diff_new_pack.sCM20i/_new 2013-12-23 12:32:44.000000000 +0100 @@ -55,6 +55,8 @@ Patch3: reduce-link-optimization.diff # PATCH-FIX-UPSTREAM aarch64-support.diff [email protected] -- add support for aarch64 Patch4: aarch64-support.patch +# PATCH-FIX-UPSTREAM ppc64le-support.diff [email protected] -- add support for ppc64le +Patch5: ppc64le-support.patch # PATCH-MISSING-TAG -- See http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines Patch130: no-Werror-rpath.diff # PATCH-FIX-UPSTREAM fix build with disabled jit @@ -84,6 +86,7 @@ %patch2 -p1 %patch3 -p1 %patch4 -p1 +%patch5 -p1 %patch130 -p1 %patch131 @@ -212,7 +215,7 @@ export CFLAGS="$CFLAGS $RPM_OPT_FLAGS -DOPENSSL_LOAD_CONF" export LDFLAGS="$LDFLAGS -Wl,--reduce-memory-overheads -Wl,--no-keep-memory -Wl,--as-needed" -%ifarch ppc ppc64 s390 s390x +%ifarch ppc ppc64 ppc64le s390 s390x qmake DEFINES+=ENABLE_JIT=0 DEFINES+=ENABLE_YARR_JIT=0 DEFINES+=ENABLE_ASSEMBLER=0 %else qmake ++++++ ppc64le-support.patch ++++++ Index: qtwebkit-opensource-src-5.2.0-rc1/Source/WTF/wtf/Platform.h =================================================================== --- qtwebkit-opensource-src-5.2.0-rc1.orig/Source/WTF/wtf/Platform.h +++ qtwebkit-opensource-src-5.2.0-rc1/Source/WTF/wtf/Platform.h @@ -107,16 +107,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]
