diff options
author | Sadie Powell <sadie@witchery.services> | 2022-09-22 14:34:18 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-12-07 15:43:39 +0000 |
commit | 4a2861ba3d4002b37d6e83312064245aeb407338 (patch) | |
tree | 81a4da52f917e3d0f151a6dd1151111f0bdf46f8 /data | |
parent | 211bd80061fd02004c7c2ef258f6404ff708bee6 (diff) |
Add a module that provides regex/pcre using PCRE2.
Diffstat (limited to 'data')
-rw-r--r-- | data/modules.example.conf | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/data/modules.example.conf b/data/modules.example.conf index aae45ff12..eba8f777f 100644 --- a/data/modules.example.conf +++ b/data/modules.example.conf @@ -403,11 +403,19 @@ module { name = "help" } /* * m_regex_pcre [EXTRA] * - * Provides the regex engine regex/pcre, which uses the Perl Compatible Regular Expressions library. + * Provides the regex engine regex/pcre, which uses version 1 of the Perl Compatible Regular + * Expressions library. This can not be loaded at the same time as the m_regex_pcre2 module. */ #module { name = "m_regex_pcre" } /* + * m_regex_pcre2 [EXTRA] + * + * Provides the regex engine regex/pcre, which uses version 2 of the Perl Compatible Regular + * Expressions library. This can not be loaded at the same time as the m_regex_pcre module. +#module { name = "m_regex_pcre2" } + +/* * m_regex_posix [EXTRA] * * Provides the regex engine regex/posix, which uses the POSIX compliant regular expressions. |