dev-libs/libpcre: disable JIT for x32

libpcre (not libpcre2) is EOL upstream, so let's just disable JIT.

Closes: https://bugs.gentoo.org/642284
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-08-25 06:56:19 +01:00
parent e3e5202c07
commit e19d55fbb2

View File

@@ -75,6 +75,9 @@ multilib_src_configure() {
--enable-shared
)
# bug #642284
[[ ${ABI} == x32 ]] && myeconfargs+=( --disable-jit --disable-pcregrep-jit )
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
}