summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-08-01 16:10:17 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-08-01 16:10:17 +0000
commit98367bb5b2578f0134a4082da196a1f9adc816ee (patch)
tree9c9d50180f0496f51b5dae4ebcc2d306f860a1f1
parent2df52178cbe8c5aae0d573e1cc491a485086ad7e (diff)
downloadpcre-98367bb5b2578f0134a4082da196a1f9adc816ee.tar.gz
Update CMake for new PCREGREP_BUFSIZE compile-time option.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@650 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1ef165e..c314743 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,7 +36,8 @@
# 2009-04-11 PH applied Christian Ehrlicher's patch to show compiler flags that
# are set by specifying a release type.
# 2010-01-02 PH added test for stdint.h
-# 2010-03-02 PH addes test for inttypes.h
+# 2010-03-02 PH added test for inttypes.h
+# 2011-08-01 PH added PCREGREP_BUFSIZE
PROJECT(PCRE C CXX)
@@ -99,6 +100,9 @@ SET(PCRE_MATCH_LIMIT "10000000" CACHE STRING
SET(PCRE_MATCH_LIMIT_RECURSION "MATCH_LIMIT" CACHE STRING
"Default limit on internal recursion. See MATCH_LIMIT_RECURSION in config.h.in for details.")
+SET(PCREGREP_BUFSIZE "20480" CACHE STRING
+ "Buffer size parameter for pcregrep. See PCREGREP_BUFSIZE in config.h.in for details.")
+
SET(PCRE_NEWLINE "LF" CACHE STRING
"What to recognize as a newline (one of CR, LF, CRLF, ANY, ANYCRLF).")