Ports/PHP: Disable PCRE JIT

The PCRE JIT creates memory that needs to be readable, writable and
executable at the same time. Serenity does not like this, so disable
it. This JIT is of limited use for the current applications of PHP
within Serenity anyway :-)
This commit is contained in:
Jelle Raaijmakers 2021-06-04 21:37:28 +02:00 committed by Andreas Kling
parent 012a5b145b
commit fccba571a2

View file

@ -10,6 +10,7 @@ configopts="
--prefix=${SERENITY_INSTALL_ROOT}/usr/local
--with-iconv=${SERENITY_INSTALL_ROOT}/usr/local
--with-zlib
--without-pcre-jit
"
export CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/libxml2/"