libpcre: detect whether jit is available or not

The configure script can check for this automatically, so we only need to
disable it explicitly for gcc2 (like before).

No rev-bump needed because no change for successfully built platforms.

Should fix #12447.
This commit is contained in:
Joachim Mairböck
2025-08-19 19:48:37 +02:00
parent 8319a93592
commit 865963466c

View File

@@ -98,7 +98,7 @@ BUILD()
aclocal
autoconf
automake --add-missing
jitOption="--enable-jit --enable-pcregrep-jit"
jitOption="--enable-jit=auto --enable-pcregrep-jit"
if [ "$effectiveTargetArchitecture" = x86_gcc2 ]; then
jitOption="--disable-jit --disable-pcregrep-jit"
fi