config.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #include <php_compat.h>
  2. #ifdef PHP_WIN32
  3. # include <config.w32.h>
  4. #else
  5. # include <php_config.h>
  6. #endif
  7. #undef PACKAGE_NAME
  8. #undef PACKAGE_VERSION
  9. #undef PACKAGE_TARNAME
  10. #undef PACKAGE_STRING
  11. #define SUPPORT_UNICODE 1
  12. #define SUPPORT_PCRE2_8 1
  13. #if defined(__GNUC__) && __GNUC__ >= 4
  14. # ifdef __cplusplus
  15. # define PCRE2_EXP_DECL extern "C" __attribute__ ((visibility("default")))
  16. # else
  17. # define PCRE2_EXP_DECL extern __attribute__ ((visibility("default")))
  18. # endif
  19. # define PCRE2_EXP_DEFN __attribute__ ((visibility("default")))
  20. #endif
  21. /* Define to any value for valgrind support to find invalid memory reads. */
  22. #if HAVE_PCRE_VALGRIND_SUPPORT
  23. #define SUPPORT_VALGRIND 1
  24. #endif
  25. /* Define to any value to enable support for Just-In-Time compiling. */
  26. #if HAVE_PCRE_JIT_SUPPORT
  27. #define SUPPORT_JIT
  28. #endif
  29. /* This limits the amount of memory that pcre2_match() may use while matching
  30. a pattern. The value is in kilobytes. */
  31. #ifndef HEAP_LIMIT
  32. #define HEAP_LIMIT 20000000
  33. #endif
  34. /* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
  35. parentheses (of any kind) in a pattern. This limits the amount of system
  36. stack that is used while compiling a pattern. */
  37. #ifndef PARENS_NEST_LIMIT
  38. #define PARENS_NEST_LIMIT 250
  39. #endif
  40. /* The value of MATCH_LIMIT determines the default number of times the
  41. pcre2_match() function can record a backtrack position during a single
  42. matching attempt. There is a runtime interface for setting a different
  43. limit. The limit exists in order to catch runaway regular expressions that
  44. take for ever to determine that they do not match. The default is set very
  45. large so that it does not accidentally catch legitimate cases. */
  46. #ifndef MATCH_LIMIT
  47. #define MATCH_LIMIT 10000000
  48. #endif
  49. /* The above limit applies to all backtracks, whether or not they are nested.
  50. In some environments it is desirable to limit the nesting of backtracking
  51. (that is, the depth of tree that is searched) more strictly, in order to
  52. restrict the maximum amount of heap memory that is used. The value of
  53. MATCH_LIMIT_DEPTH provides this facility. To have any useful effect, it
  54. must be less than the value of MATCH_LIMIT. The default is to use the same
  55. value as MATCH_LIMIT. There is a runtime method for setting a different
  56. limit. */
  57. #ifndef MATCH_LIMIT_DEPTH
  58. #define MATCH_LIMIT_DEPTH MATCH_LIMIT
  59. #endif
  60. /* This limit is parameterized just in case anybody ever wants to change it.
  61. Care must be taken if it is increased, because it guards against integer
  62. overflow caused by enormously large patterns. */
  63. #ifndef MAX_NAME_COUNT
  64. #define MAX_NAME_COUNT 10000
  65. #endif
  66. /* This limit is parameterized just in case anybody ever wants to change it.
  67. Care must be taken if it is increased, because it guards against integer
  68. overflow caused by enormously large patterns. */
  69. #ifndef MAX_NAME_SIZE
  70. #define MAX_NAME_SIZE 32
  71. #endif
  72. /* Defining NEVER_BACKSLASH_C locks out the use of \C in all patterns. */
  73. /* #undef NEVER_BACKSLASH_C */
  74. /* The value of NEWLINE_DEFAULT determines the default newline character
  75. sequence. PCRE2 client programs can override this by selecting other values
  76. at run time. The valid values are 1 (CR), 2 (LF), 3 (CRLF), 4 (ANY), 5
  77. (ANYCRLF), and 6 (NUL). */
  78. #ifndef NEWLINE_DEFAULT
  79. #define NEWLINE_DEFAULT 2
  80. #endif
  81. /* The value of LINK_SIZE determines the number of bytes used to store links
  82. as offsets within the compiled regex. The default is 2, which allows for
  83. compiled patterns up to 64K long. This covers the vast majority of cases.
  84. However, PCRE2 can also be compiled to use 3 or 4 bytes instead. This
  85. allows for longer patterns in extreme cases. */
  86. #ifndef LINK_SIZE
  87. #define LINK_SIZE 2
  88. #endif