diff options
Diffstat (limited to 'ext/pcre/pcrelib/config.h')
-rw-r--r-- | ext/pcre/pcrelib/config.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/ext/pcre/pcrelib/config.h b/ext/pcre/pcrelib/config.h index a3b1b5dd38..dd12e21cc6 100644 --- a/ext/pcre/pcrelib/config.h +++ b/ext/pcre/pcrelib/config.h @@ -314,7 +314,7 @@ them both to 0; an emulation function will be used. */ #define PACKAGE_NAME "PCRE" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "PCRE 8.32" +#define PACKAGE_STRING "PCRE 8.36" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "pcre" @@ -323,7 +323,7 @@ them both to 0; an emulation function will be used. */ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "8.32" +#define PACKAGE_VERSION "8.36" /* to make a symbol visible */ /* #undef PCRECPP_EXP_DECL */ @@ -331,6 +331,13 @@ them both to 0; an emulation function will be used. */ /* to make a symbol visible */ /* #undef PCRECPP_EXP_DEFN */ +/* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested + parentheses (of any kind) in a pattern. This limits the amount of system + stack that is used while compiling a pattern. */ +#ifndef PARENS_NEST_LIMIT +#define PARENS_NEST_LIMIT 250 +#endif + /* The value of PCREGREP_BUFSIZE determines the size of buffer used by pcregrep to hold parts of the file it is searching. This is also the minimum value. The actual amount of memory used by pcregrep is three times @@ -432,7 +439,7 @@ them both to 0; an emulation function will be used. */ /* Version number of package */ #ifndef VERSION -#define VERSION "8.34" +#define VERSION "8.36" #endif /* Define to empty if `const' does not conform to ANSI C. */ @@ -444,3 +451,4 @@ them both to 0; an emulation function will be used. */ /* Define to `unsigned int' if <sys/types.h> does not define. */ /* #undef size_t */ + |