re-enable MIPS JIT support (Closes: #892488)
authorMatthew Vernon <matthew@debian.org>
Wed, 17 Nov 2021 14:52:07 +0000 (14:52 +0000)
committerMatthew Vernon <matthew@debian.org>
Wed, 17 Nov 2021 14:52:07 +0000 (14:52 +0000)
upstream fixed this a while back

debian/rules

index 695f0cfdc1371fef1d1add00caf5e17a205fd39a..53752ae8d0cfb5f362aa8adc03e4e694dc69064d 100755 (executable)
@@ -13,7 +13,7 @@ export DEB_CFLAGS_MAINT_APPEND = -Dregcomp=PCRE2regcomp -Dregexec=PCRE2regexec -
 
 deb_maint_conf_args = --enable-pcre2-16 --enable-pcre2-32 --disable-pcre2grep-callout
 #enable JIT only on architectures that support it (see pcre2jit.3)
-ifneq ($(filter i386 amd64 armel armhf powerpc sparc arm64 ppc64 ppc64el s390x, $(DEB_HOST_ARCH)),)
+ifneq ($(filter i386 amd64 armel armhf mips mipsel mips64el powerpc sparc arm64 ppc64 ppc64el s390x, $(DEB_HOST_ARCH)),)
 deb_maint_conf_args +=--enable-jit
 else
 deb_maint_conf_args +=--disable-jit