Hello community, here is the log from the commit of package js for openSUSE:Factory checked in at 2013-12-19 12:13:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/js (Old) and /work/SRC/openSUSE:Factory/.js.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "js" Changes: -------- --- /work/SRC/openSUSE:Factory/js/js.changes 2013-08-13 10:32:21.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.js.new/js.changes 2013-12-19 12:13:20.000000000 +0100 @@ -1,0 +2,6 @@ +Sun Dec 15 02:31:22 UTC 2013 - [email protected] + +- ppc64le-support.patch: Add support for powerpc64le. +- js-filter.patch: don't try to use the JIT on powerpc64le + +------------------------------------------------------------------- New: ---- ppc64le-support.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ js.spec ++++++ --- /var/tmp/diff_new_pack.2i8FFf/_old 2013-12-19 12:13:21.000000000 +0100 +++ /var/tmp/diff_new_pack.2i8FFf/_new 2013-12-19 12:13:21.000000000 +0100 @@ -27,6 +27,7 @@ Patch0: js-64bitbigendian.patch Patch1: js-filter.patch Patch2: do-not-enforce-wrong-arm-flags.patch +Patch3: ppc64le-support.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: autoconf213 BuildRequires: gcc-c++ @@ -70,6 +71,7 @@ %patch0 -p1 %patch1 %patch2 +%patch3 -p1 %build # no need to add build time to binaries ++++++ js-filter.patch ++++++ --- /var/tmp/diff_new_pack.2i8FFf/_old 2013-12-19 12:13:21.000000000 +0100 +++ /var/tmp/diff_new_pack.2i8FFf/_new 2013-12-19 12:13:21.000000000 +0100 @@ -5,7 +5,7 @@ ############################################# -ifeq (,$(filter-out powerpc sparc,$(TARGET_CPU))) -+ifeq (,$(filter-out powerpc powerpc64 s390 s390x aarch64,$(TARGET_CPU))) ++ifeq (,$(filter-out powerpc powerpc64 powerpc64le s390 s390x aarch64,$(TARGET_CPU))) VPATH += $(srcdir)/assembler \ $(srcdir)/assembler/wtf \ ++++++ ppc64le-support.patch ++++++ Index: js-1.8.5/js/src/configure.in =================================================================== --- js-1.8.5.orig/js/src/configure.in +++ js-1.8.5/js/src/configure.in @@ -1498,7 +1498,7 @@ case "$OS_TEST" in CPU_ARCH=x86 ;; -powerpc64 | ppc64) +powerpc64 | ppc64 | powerpc64le | ppc64le) CPU_ARCH=ppc64 ;; Index: js-1.8.5/js/src/assembler/wtf/Platform.h =================================================================== --- js-1.8.5.orig/js/src/assembler/wtf/Platform.h +++ js-1.8.5/js/src/assembler/wtf/Platform.h @@ -129,16 +129,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]
