Skip to content

Commit d37bf77

Browse files
committed
Updated PCRE2 used for win32 builds.
Note that PCRE2 10.40 and newer versions require C99 support, as it now uses "for (int i = 0; ...)" constructs[1], and thus cannot be compiled with MSVC 2010 and older versions anymore. [1] PCRE2Project/pcre2#163
1 parent fb1a2e4 commit d37bf77

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

auto/lib/pcre/make

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ if [ $PCRE_LIBRARY = PCRE2 ]; then
3636
pcre2_valid_utf.c \
3737
pcre2_xclass.c"
3838

39-
ngx_pcre_test="pcre2_convert.c \
39+
ngx_pcre_test="pcre2_chkdint.c \
40+
pcre2_convert.c \
4041
pcre2_extuni.c \
4142
pcre2_find_bracket.c \
4243
pcre2_script_run.c \

misc/GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CC = cl
88
OBJS = objs.msvc8
99
OPENSSL = openssl-3.0.14
1010
ZLIB = zlib-1.3.1
11-
PCRE = pcre2-10.39
11+
PCRE = pcre2-10.44
1212

1313

1414
release: export

0 commit comments

Comments
 (0)