summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-06-11 09:30:56 +0200
committerGitHub <noreply@github.com>2020-06-11 09:30:56 +0200
commit1f3fa6e956c8afdb8e3697fb9d096119781285df (patch)
tree7836822cca92b588948019512456ea12378f326f
parent4af5dfb12fbe5298dc77d1d63976c858fd7d5017 (diff)
parent9f10f6779cfdc15c1304c017bac5ad25de2383b6 (diff)
Merge pull request #39454 from mrushyendra/regex_unicode
Enable Unicode support for RegEx class
-rw-r--r--modules/regex/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/regex/SCsub b/modules/regex/SCsub
index 753650adcb..2afacc1d9c 100644
--- a/modules/regex/SCsub
+++ b/modules/regex/SCsub
@@ -7,7 +7,7 @@ env_regex = env_modules.Clone()
if env["builtin_pcre2"]:
thirdparty_dir = "#thirdparty/pcre2/src/"
- thirdparty_flags = ["PCRE2_STATIC", "HAVE_CONFIG_H"]
+ thirdparty_flags = ["PCRE2_STATIC", "HAVE_CONFIG_H", "SUPPORT_UNICODE"]
if env["builtin_pcre2_with_jit"]:
thirdparty_flags.append("SUPPORT_JIT")