From ffd53c92232ecedb94bbd686f6bb8c6cda55b185 Mon Sep 17 00:00:00 2001 From: "Philip.Hazel" Date: Wed, 5 Oct 2016 17:03:52 +0000 Subject: [PATCH] Fix typo in CMakeLists.txt. --- CMakeLists.txt | 4 +++- ChangeLog | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ced3df2..1987acb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -74,6 +74,8 @@ # 2016-03-01 PH applied Chris Wilson's patch for MSVC static # 2016-06-24 PH applied Chris Wilson's second patch, putting the first under # a new option instead of being unconditional. +# 2016-10-05 PH fixed a typo (PCRE should be PCRE2) in above patch +# fix by David Gaussmann PROJECT(PCRE2 C) @@ -190,7 +192,7 @@ IF (MINGW) ENDIF(MINGW) IF(MSVC) - OPTION(PCRE_STATIC_RUNTIME OFF CACHE BOOL + OPTION(PCRE2_STATIC_RUNTIME "ON=Compile against the static runtime (/MT)." OFF) OPTION(INSTALL_MSVC_PDB diff --git a/ChangeLog b/ChangeLog index 9bf5bab..76b3e0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -58,6 +58,9 @@ pattern. for the current position in the subject line was incorrect if it was after an escape sequence for a character whose code point was greater than \x{ff}. +9. Change 19 for 10.22 had a typo (PCRE_STATIC_RUNTIME should be +PCRE2_STATIC_RUNTIME). Fix from David Gaussmann. + Version 10.22 29-July-2016 --------------------------