Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/manual/installation/installation-requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ To use the system's PCRE2, set the `PCRE2_SYSTEM` variable to yes:
# cd ossec-hids-*
# PCRE2_SYSTEM=yes ./install.sh

PCRE2 JIT (``USE_PCRE2_JIT``) is an optional speedup. Matching always goes
through ``pcre2_match``, which uses JIT when it is available and otherwise
falls back to interpreted matching. Builds no longer treat a JIT compile
failure as a fatal ``decoder.xml`` error (macOS and some system packages
often ship libpcre2 without usable JIT). macOS defaults to
``USE_PCRE2_JIT=no``. To force a non-JIT build explicitly::

# USE_PCRE2_JIT=no ./install.sh

zlib
----

Expand Down
Loading