Package: webkitgtk
Version: 2.2.0
Hi, I am working on Debian port for mips64el, while webkitgtk failed to build.
This is my patch, with it, webkitgtk can build now.
The attached patch is for debian/rules, and the patch for upstream, is
forwarded to
https://bugs.webkit.org/show_bug.cgi?id=113638
--
YunQiang Su
diff --git a/debian/rules b/debian/rules
index 318a2ff..30a27d1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -55,12 +55,12 @@ ifneq (,$(filter $(DEB_BUILD_ARCH),armel armhf
kfreebsd-amd64 kfreebsd-i386 powe
endif
# disable jit on some architectures (bug #651636)
-ifneq (,$(filter $(DEB_BUILD_ARCH),armel mips mipsel))
+ifneq (,$(filter $(DEB_BUILD_ARCH),armel mips mipsel mips64el))
COMMON_CONFIGURE_ARGUMENTS += --disable-jit
endif
# See https://bugs.webkit.org/show_bug.cgi?id=113638
-ifneq (,$(filter $(DEB_BUILD_ARCH),alpha hppa ia64 powerpc ppc64 sparc sparc64
s390 s390x))
+ifneq (,$(filter $(DEB_BUILD_ARCH),alpha hppa ia64 powerpc ppc64 sparc sparc64
s390 s390x mips64el))
CPPFLAGS += -DENABLE_JIT=0 -DENABLE_YARR_JIT=0 -DENABLE_ASSEMBLER=0
endif