summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2017-01-23 16:35:09 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2017-01-23 16:35:09 +0000
commit073bb6628f95d32ea11f7ee328ed5f0c935cd11c (patch)
tree677d34d051489ed4bacc23e67d4ca59c21e43749
parentbf3b449e4631a3e799298181ef795e48c149a017 (diff)
downloadpcre-073bb6628f95d32ea11f7ee328ed5f0c935cd11c.tar.gz
Fix typo in CMakeLists.txt that affects only MSVC.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1677 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog7
2 files changed, 8 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 42451ad..858a34b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -191,7 +191,7 @@ IF (MINGW)
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
diff --git a/ChangeLog b/ChangeLog
index 01511b1..ab4e053 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,13 @@ ChangeLog for PCRE
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
----------------------------