diff options
| author | JackBoosY <47264268+JackBoosY@users.noreply.github.com> | 2019-10-30 14:25:56 +0800 |
|---|---|---|
| committer | Victor Romero <romerosanchezv@gmail.com> | 2019-10-29 23:25:56 -0700 |
| commit | 8445fcce87a5171352ab7d8593a75cc3e13ddb8c (patch) | |
| tree | 9836a4a1112bd51f36c61f296d3721ef9b1c5017 /ports/pcre2/fix-uwp.patch | |
| parent | b9150c410f48a8c85bad12bcd1d75029e63e9d6d (diff) | |
| download | vcpkg-8445fcce87a5171352ab7d8593a75cc3e13ddb8c.tar.gz vcpkg-8445fcce87a5171352ab7d8593a75cc3e13ddb8c.zip | |
[pcre2]Fix uwp build failure. (#8620)
Diffstat (limited to 'ports/pcre2/fix-uwp.patch')
| -rw-r--r-- | ports/pcre2/fix-uwp.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ports/pcre2/fix-uwp.patch b/ports/pcre2/fix-uwp.patch new file mode 100644 index 000000000..29aaf1a2b --- /dev/null +++ b/ports/pcre2/fix-uwp.patch @@ -0,0 +1,25 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 0e8a164..7e8150c 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -506,6 +506,7 @@ ADD_DEFINITIONS(-DHAVE_CONFIG_H) + + IF(MSVC) + ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS) ++ add_compile_options(/wd4146) + ENDIF(MSVC) + + SET(CMAKE_INCLUDE_CURRENT_DIR 1) +diff --git a/src/pcre2_match.c b/src/pcre2_match.c +index 050b7e9..49925a2 100644 +--- a/src/pcre2_match.c ++++ b/src/pcre2_match.c +@@ -566,7 +566,7 @@ match(PCRE2_SPTR start_eptr, PCRE2_SPTR start_ecode, PCRE2_SIZE *ovector, + heapframe *F; /* Current frame pointer */ + heapframe *N = NULL; /* Temporary frame pointers */ + heapframe *P = NULL; +-heapframe *assert_accept_frame; /* For passing back the frame with captures */ ++heapframe *assert_accept_frame = NULL; /* For passing back the frame with captures */ + PCRE2_SIZE frame_copy_size; /* Amount to copy when creating a new frame */ + + /* Local variables that do not need to be preserved over calls to RRMATCH(). */ |
