From: Peter Michael Green Date: Thu, 30 Mar 2023 13:49:24 +0000 (+0000) Subject: Disable webgl on armhf X-Git-Tag: archive/raspbian/2.40.0-3+rpi1^0 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c1fb9c500d386a94e15b2cba54e2da1e8b4fd89b;p=webkit2gtk.git Disable webgl on armhf --- diff --git a/debian/changelog b/debian/changelog index a106907346..6dc74b9545 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,9 @@ webkit2gtk (2.40.0-3+rpi1) bookworm-staging; urgency=medium * Disable javascript JIT as it doesn't appear to be armv6 compatible (at least I assume that is the cause of the assembler errors) + [changes introuced in 2.40.0-3+rpi1 by Peter Michael Green] + * Disable webgl on armhf. + -- Peter Michael Green Thu, 30 Mar 2023 12:41:52 +0000 webkit2gtk (2.40.0-3) unstable; urgency=medium diff --git a/debian/rules b/debian/rules index 9787382c46..d7a979ae9b 100755 --- a/debian/rules +++ b/debian/rules @@ -51,7 +51,7 @@ ifneq (,$(filter $(DEB_HOST_ARCH),i386)) endif # https://bugs.webkit.org/show_bug.cgi?id=252670 -ifneq (,$(filter $(DEB_HOST_ARCH),armel mipsel m68k powerpc sh4)) +ifneq (,$(filter $(DEB_HOST_ARCH),armel armhf mipsel m68k powerpc sh4)) EXTRA_CMAKE_ARGUMENTS += -DENABLE_WEBGL=OFF endif