Revision: 1677
http://vcs.pcre.org/viewvc?view=rev&revision=1677
Author: ph10
Date: 2017-01-23 16:35:09 +0000 (Mon, 23 Jan 2017)
Log Message:
-----------
Fix typo in CMakeLists.txt that affects only MSVC.
Modified Paths:
--------------
code/trunk/CMakeLists.txt
code/trunk/ChangeLog
Modified: code/trunk/CMakeLists.txt
===================================================================
--- code/trunk/CMakeLists.txt 2017-01-23 07:41:37 UTC (rev 1676)
+++ code/trunk/CMakeLists.txt 2017-01-23 16:35:09 UTC (rev 1677)
@@ -191,7 +191,7 @@
ENDIF(MINGW)
IF(MSVC)
- OPTION(PCRE_STATIC_RUNTIME OFF CACHE BOOL
+ OPTION(PCRE_STATIC_RUNTIME
"ON=Compile against the static runtime (/MT)."
OFF)
OPTION(INSTALL_MSVC_PDB
Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog 2017-01-23 07:41:37 UTC (rev 1676)
+++ code/trunk/ChangeLog 2017-01-23 16:35:09 UTC (rev 1677)
@@ -4,6 +4,13 @@
Note that the PCRE 8.xx series (PCRE1) is now in a bugfix-only state. All
development is happening in the PCRE2 10.xx series.
+Version 8.41
+------------
+
+1. Fixed typo in CMakeLists.txt (wrong number of arguments for
+PCRE_STATIC_RUNTIME (affects MSVC only).
+
+
Version 8.40 11-January-2017
----------------------------