Source: qtwebkit Version: 2.3.4.dfsg-9.1 Tags: patch User: debian-i...@lists.debian.org Usertags: ia64
Hi, I realise that qtwebkit is deprecated and the intention is to remove it for buster, but kde4libs and other important KDE/Qt packages still currently use it, and this is blocking a lot of important packages on ia64 from being built. Could you please apply the attached (trivial) debdiff to disable the JIT on ia64 so qtwebkit will build? Let me know if I can help by NMUing. Thanks, James
diff -Nru qtwebkit-2.3.4.dfsg/debian/rules qtwebkit-2.3.4.dfsg/debian/rules --- qtwebkit-2.3.4.dfsg/debian/rules 2016-10-21 13:53:04.000000000 +0200 +++ qtwebkit-2.3.4.dfsg/debian/rules 2018-02-25 20:42:37.000000000 +0100 @@ -50,7 +50,7 @@ #disable JIT assembler on archs where it doesn't compile #disable WTF_USE_3D_GRAPHICS on ARM where it doesn't compile #disable forcing SSE2 on all other platforms -ifneq (,$(filter alpha arm64 armel hppa m68k mips mips64 mips64el mipsel powerpc powerpcspe ppc64 ppc64el s390x sh4 sparc64 x32,$(DEB_HOST_ARCH))) +ifneq (,$(filter alpha arm64 armel hppa ia64 m68k mips mips64 mips64el mipsel powerpc powerpcspe ppc64 ppc64el s390x sh4 sparc64 x32,$(DEB_HOST_ARCH))) ./Tools/Scripts/build-webkit --qt DEFINES+=ENABLE_JIT=0 DEFINES+=ENABLE_YARR_JIT=0 DEFINES+=ENABLE_ASSEMBLER=0 $(QMAKE_ARGS) $(MAKE_ARGS) else ifeq ($(DEB_HOST_ARCH),armhf) ./Tools/Scripts/build-webkit --qt DEFINES+=WTF_USE_3D_GRAPHICS=0 DEFINES+=ENABLE_JIT=0 DEFINES+=ENABLE_YARR_JIT=0 DEFINES+=ENABLE_ASSEMBLER=0 $(QMAKE_ARGS) $(MAKE_ARGS)