diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-01-18 10:50:42 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-01-18 10:50:42 +0100 |
commit | 7100902e291f3d0b97f62e6663fe66dac3482c32 (patch) | |
tree | b6e370ca7d9e6f97c3c099ebdcb27ce3805318e2 | |
parent | e39d5d738575c4e784880651db00fdd8cf6c1595 (diff) |
Document --no-pcre in the README
-rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -17,6 +17,14 @@ $ ./make # Build the project $ ./make install # Install the project ``` +By default Grab is linked against the PCRE2 library for PCRE support. If +you prefer to simply use POSIX EREs, you can pass `--no-pcre` to the +build script: + +```sh +$ ./make --no-pcre +``` + ## Description |