10 |
|
|
11 |
m4_define(pcre_major, [8]) |
m4_define(pcre_major, [8]) |
12 |
m4_define(pcre_minor, [34]) |
m4_define(pcre_minor, [34]) |
13 |
m4_define(pcre_prerelease, [-RC]) |
m4_define(pcre_prerelease, [-RC1]) |
14 |
m4_define(pcre_date, [2013-06-14]) |
m4_define(pcre_date, [2013-11-19]) |
15 |
|
|
16 |
# NOTE: The CMakeLists.txt file searches for the above variables in the first |
# NOTE: The CMakeLists.txt file searches for the above variables in the first |
17 |
# 50 lines of this file. Please update that if the variables above are moved. |
# 50 lines of this file. Please update that if the variables above are moved. |
18 |
|
|
19 |
# Libtool shared library interface versions (current:revision:age) |
# Libtool shared library interface versions (current:revision:age) |
20 |
m4_define(libpcre_version, [3:1:2]) |
m4_define(libpcre_version, [3:2:2]) |
21 |
m4_define(libpcre16_version, [2:1:2]) |
m4_define(libpcre16_version, [2:2:2]) |
22 |
m4_define(libpcre32_version, [0:1:0]) |
m4_define(libpcre32_version, [0:2:0]) |
23 |
m4_define(libpcreposix_version, [0:2:0]) |
m4_define(libpcreposix_version, [0:2:0]) |
24 |
m4_define(libpcrecpp_version, [0:0:0]) |
m4_define(libpcrecpp_version, [0:0:0]) |
25 |
|
|
274 |
AS_HELP_STRING([--with-link-size=N], |
AS_HELP_STRING([--with-link-size=N], |
275 |
[internal link size (2, 3, or 4 allowed; default=2)]), |
[internal link size (2, 3, or 4 allowed; default=2)]), |
276 |
, with_link_size=2) |
, with_link_size=2) |
277 |
|
|
278 |
# Handle --with-parens-nest-limit=N |
# Handle --with-parens-nest-limit=N |
279 |
AC_ARG_WITH(parens-nest-limit, |
AC_ARG_WITH(parens-nest-limit, |
280 |
AS_HELP_STRING([--with-parens-nest-limit=N], |
AS_HELP_STRING([--with-parens-nest-limit=N], |
281 |
[nested parentheses limit (default=250)]), |
[nested parentheses limit (default=250)]), |
282 |
, with_parens_nest_limit=250) |
, with_parens_nest_limit=250) |
283 |
|
|
284 |
# Handle --with-match-limit=N |
# Handle --with-match-limit=N |
285 |
AC_ARG_WITH(match-limit, |
AC_ARG_WITH(match-limit, |
789 |
small, the wrapper function uses space on the stack, because this is |
small, the wrapper function uses space on the stack, because this is |
790 |
faster than using malloc() for each call. The threshold above which |
faster than using malloc() for each call. The threshold above which |
791 |
the stack is no longer used is defined by POSIX_MALLOC_THRESHOLD.]) |
the stack is no longer used is defined by POSIX_MALLOC_THRESHOLD.]) |
792 |
|
|
793 |
AC_DEFINE_UNQUOTED([PARENS_NEST_LIMIT], [$with_parens_nest_limit], [ |
AC_DEFINE_UNQUOTED([PARENS_NEST_LIMIT], [$with_parens_nest_limit], [ |
794 |
The value of PARENS_NEST_LIMIT specifies the maximum depth of nested |
The value of PARENS_NEST_LIMIT specifies the maximum depth of nested |
795 |
parentheses (of any kind) in a pattern. This limits the amount of system |
parentheses (of any kind) in a pattern. This limits the amount of system |
796 |
stack that is used while compiling a pattern.]) |
stack that is used while compiling a pattern.]) |
797 |
|
|
798 |
AC_DEFINE_UNQUOTED([MATCH_LIMIT], [$with_match_limit], [ |
AC_DEFINE_UNQUOTED([MATCH_LIMIT], [$with_match_limit], [ |
799 |
The value of MATCH_LIMIT determines the default number of times the |
The value of MATCH_LIMIT determines the default number of times the |
1082 |
Use stack recursion ............. : ${enable_stack_for_recursion} |
Use stack recursion ............. : ${enable_stack_for_recursion} |
1083 |
POSIX mem threshold ............. : ${with_posix_malloc_threshold} |
POSIX mem threshold ............. : ${with_posix_malloc_threshold} |
1084 |
Internal link size .............. : ${with_link_size} |
Internal link size .............. : ${with_link_size} |
1085 |
Nested parentheses limit ........ : ${with_parens_nest_limit} |
Nested parentheses limit ........ : ${with_parens_nest_limit} |
1086 |
Match limit ..................... : ${with_match_limit} |
Match limit ..................... : ${with_match_limit} |
1087 |
Match limit recursion ........... : ${with_match_limit_recursion} |
Match limit recursion ........... : ${with_match_limit_recursion} |
1088 |
Build shared libs ............... : ${enable_shared} |
Build shared libs ............... : ${enable_shared} |