Revision: 558
http://www.exim.org/viewvc/pcre2?view=rev&revision=558
Author: ph10
Date: 2016-10-05 18:03:52 +0100 (Wed, 05 Oct 2016)
Log Message:
-----------
Fix typo in CMakeLists.txt.
Modified Paths:
--------------
code/trunk/CMakeLists.txt
code/trunk/ChangeLog
Modified: code/trunk/CMakeLists.txt
===================================================================
--- code/trunk/CMakeLists.txt 2016-10-05 16:53:34 UTC (rev 557)
+++ code/trunk/CMakeLists.txt 2016-10-05 17:03:52 UTC (rev 558)
@@ -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 @@
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
Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog 2016-10-05 16:53:34 UTC (rev 557)
+++ code/trunk/ChangeLog 2016-10-05 17:03:52 UTC (rev 558)
@@ -58,7 +58,10 @@
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
--------------------------