Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): enable JIT support for pcre2 (#12464)
PCRE2 requires JIT support to be explicitly enabled during build. From https://pcre.org/current/doc/html/pcre2jit.html: "JIT support is an optional feature of PCRE2. The "configure" option --enable-jit (or equivalent CMake option) must be set when PCRE2 is built if you want to use JIT." Without the flag in this commit, Kong logs display several entries containing failures in `pcre2_jit_compile`, such as ``` 2024/01/30 16:25:20 [info] 747309#0: pcre2_jit_compile() failed: -45 in "^\s*HTTP/1\.1\s+", ignored ``` (cherry picked from commit cc25516)
- Loading branch information