config.h.in 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /* config.h.in. Generated from configure.ac by autoheader. */
  2. /* PCRE is written in Standard C, but there are a few non-standard things it
  3. can cope with, allowing it to run on SunOS4 and other "close to standard"
  4. systems.
  5. In environments that support the GNU autotools, config.h.in is converted into
  6. config.h by the "configure" script. In environments that use CMake,
  7. config-cmake.in is converted into config.h. If you are going to build PCRE "by
  8. hand" without using "configure" or CMake, you should copy the distributed
  9. config.h.generic to config.h, and edit the macro definitions to be the way you
  10. need them. You must then add -DHAVE_CONFIG_H to all of your compile commands,
  11. so that config.h is included at the start of every source.
  12. Alternatively, you can avoid editing by using -D on the compiler command line
  13. to set the macro values. In this case, you do not have to set -DHAVE_CONFIG_H,
  14. but if you do, default values will be taken from config.h for non-boolean
  15. macros that are not defined on the command line.
  16. Boolean macros such as HAVE_STDLIB_H and SUPPORT_PCRE8 should either be defined
  17. (conventionally to 1) for TRUE, and not defined at all for FALSE. All such
  18. macros are listed as a commented #undef in config.h.generic. Macros such as
  19. MATCH_LIMIT, whose actual value is relevant, have defaults defined, but are
  20. surrounded by #ifndef/#endif lines so that the value can be overridden by -D.
  21. PCRE uses memmove() if HAVE_MEMMOVE is defined; otherwise it uses bcopy() if
  22. HAVE_BCOPY is defined. If your system has neither bcopy() nor memmove(), make
  23. sure both macros are undefined; an emulation function will then be used. */
  24. /* By default, the \R escape sequence matches any Unicode line ending
  25. character or sequence of characters. If BSR_ANYCRLF is defined (to any
  26. value), this is changed so that backslash-R matches only CR, LF, or CRLF.
  27. The build-time default can be overridden by the user of PCRE at runtime. */
  28. #undef BSR_ANYCRLF
  29. /* If you are compiling for a system that uses EBCDIC instead of ASCII
  30. character codes, define this macro to any value. You must also edit the
  31. NEWLINE macro below to set a suitable EBCDIC newline, commonly 21 (0x15).
  32. On systems that can use "configure" or CMake to set EBCDIC, NEWLINE is
  33. automatically adjusted. When EBCDIC is set, PCRE assumes that all input
  34. strings are in EBCDIC. If you do not define this macro, PCRE will assume
  35. input strings are ASCII or UTF-8/16/32 Unicode. It is not possible to build
  36. a version of PCRE that supports both EBCDIC and UTF-8/16/32. */
  37. #undef EBCDIC
  38. /* In an EBCDIC environment, define this macro to any value to arrange for the
  39. NL character to be 0x25 instead of the default 0x15. NL plays the role that
  40. LF does in an ASCII/Unicode environment. The value must also be set in the
  41. NEWLINE macro below. On systems that can use "configure" or CMake to set
  42. EBCDIC_NL25, the adjustment of NEWLINE is automatic. */
  43. #undef EBCDIC_NL25
  44. /* Define to 1 if you have the `bcopy' function. */
  45. #undef HAVE_BCOPY
  46. /* Define to 1 if you have the <bits/type_traits.h> header file. */
  47. #undef HAVE_BITS_TYPE_TRAITS_H
  48. /* Define to 1 if you have the <bzlib.h> header file. */
  49. #undef HAVE_BZLIB_H
  50. /* Define to 1 if you have the <dirent.h> header file. */
  51. #undef HAVE_DIRENT_H
  52. /* Define to 1 if you have the <dlfcn.h> header file. */
  53. #undef HAVE_DLFCN_H
  54. /* Define to 1 if you have the <editline/readline.h> header file. */
  55. #undef HAVE_EDITLINE_READLINE_H
  56. /* Define to 1 if you have the <edit/readline/readline.h> header file. */
  57. #undef HAVE_EDIT_READLINE_READLINE_H
  58. /* Define to 1 if you have the <inttypes.h> header file. */
  59. #undef HAVE_INTTYPES_H
  60. /* Define to 1 if you have the <limits.h> header file. */
  61. #undef HAVE_LIMITS_H
  62. /* Define to 1 if the system has the type `long long'. */
  63. #undef HAVE_LONG_LONG
  64. /* Define to 1 if you have the `memmove' function. */
  65. #undef HAVE_MEMMOVE
  66. /* Define to 1 if you have the <memory.h> header file. */
  67. #undef HAVE_MEMORY_H
  68. /* Define if you have POSIX threads libraries and header files. */
  69. #undef HAVE_PTHREAD
  70. /* Have PTHREAD_PRIO_INHERIT. */
  71. #undef HAVE_PTHREAD_PRIO_INHERIT
  72. /* Define to 1 if you have the <readline/history.h> header file. */
  73. #undef HAVE_READLINE_HISTORY_H
  74. /* Define to 1 if you have the <readline/readline.h> header file. */
  75. #undef HAVE_READLINE_READLINE_H
  76. /* Define to 1 if you have the <stdint.h> header file. */
  77. #undef HAVE_STDINT_H
  78. /* Define to 1 if you have the <stdlib.h> header file. */
  79. #undef HAVE_STDLIB_H
  80. /* Define to 1 if you have the `strerror' function. */
  81. #undef HAVE_STRERROR
  82. /* Define to 1 if you have the <string> header file. */
  83. #undef HAVE_STRING
  84. /* Define to 1 if you have the <strings.h> header file. */
  85. #undef HAVE_STRINGS_H
  86. /* Define to 1 if you have the <string.h> header file. */
  87. #undef HAVE_STRING_H
  88. /* Define to 1 if you have `strtoimax'. */
  89. #undef HAVE_STRTOIMAX
  90. /* Define to 1 if you have `strtoll'. */
  91. #undef HAVE_STRTOLL
  92. /* Define to 1 if you have `strtoq'. */
  93. #undef HAVE_STRTOQ
  94. /* Define to 1 if you have the <sys/stat.h> header file. */
  95. #undef HAVE_SYS_STAT_H
  96. /* Define to 1 if you have the <sys/types.h> header file. */
  97. #undef HAVE_SYS_TYPES_H
  98. /* Define to 1 if you have the <type_traits.h> header file. */
  99. #undef HAVE_TYPE_TRAITS_H
  100. /* Define to 1 if you have the <unistd.h> header file. */
  101. #undef HAVE_UNISTD_H
  102. /* Define to 1 if the system has the type `unsigned long long'. */
  103. #undef HAVE_UNSIGNED_LONG_LONG
  104. /* Define to 1 if the compiler supports simple visibility declarations. */
  105. #undef HAVE_VISIBILITY
  106. /* Define to 1 if you have the <windows.h> header file. */
  107. #undef HAVE_WINDOWS_H
  108. /* Define to 1 if you have the <zlib.h> header file. */
  109. #undef HAVE_ZLIB_H
  110. /* Define to 1 if you have `_strtoi64'. */
  111. #undef HAVE__STRTOI64
  112. /* The value of LINK_SIZE determines the number of bytes used to store links
  113. as offsets within the compiled regex. The default is 2, which allows for
  114. compiled patterns up to 64K long. This covers the vast majority of cases.
  115. However, PCRE can also be compiled to use 3 or 4 bytes instead. This allows
  116. for longer patterns in extreme cases. */
  117. #undef LINK_SIZE
  118. /* Define to the sub-directory where libtool stores uninstalled libraries. */
  119. #undef LT_OBJDIR
  120. /* The value of MATCH_LIMIT determines the default number of times the
  121. internal match() function can be called during a single execution of
  122. pcre_exec(). There is a runtime interface for setting a different limit.
  123. The limit exists in order to catch runaway regular expressions that take
  124. for ever to determine that they do not match. The default is set very large
  125. so that it does not accidentally catch legitimate cases. */
  126. #undef MATCH_LIMIT
  127. /* The above limit applies to all calls of match(), whether or not they
  128. increase the recursion depth. In some environments it is desirable to limit
  129. the depth of recursive calls of match() more strictly, in order to restrict
  130. the maximum amount of stack (or heap, if NO_RECURSE is defined) that is
  131. used. The value of MATCH_LIMIT_RECURSION applies only to recursive calls of
  132. match(). To have any useful effect, it must be less than the value of
  133. MATCH_LIMIT. The default is to use the same value as MATCH_LIMIT. There is
  134. a runtime method for setting a different limit. */
  135. #undef MATCH_LIMIT_RECURSION
  136. /* This limit is parameterized just in case anybody ever wants to change it.
  137. Care must be taken if it is increased, because it guards against integer
  138. overflow caused by enormously large patterns. */
  139. #undef MAX_NAME_COUNT
  140. /* This limit is parameterized just in case anybody ever wants to change it.
  141. Care must be taken if it is increased, because it guards against integer
  142. overflow caused by enormously large patterns. */
  143. #undef MAX_NAME_SIZE
  144. /* The value of NEWLINE determines the default newline character sequence.
  145. PCRE client programs can override this by selecting other values at run
  146. time. In ASCII environments, the value can be 10 (LF), 13 (CR), or 3338
  147. (CRLF); in EBCDIC environments the value can be 21 or 37 (LF), 13 (CR), or
  148. 3349 or 3365 (CRLF) because there are two alternative codepoints (0x15 and
  149. 0x25) that are used as the NL line terminator that is equivalent to ASCII
  150. LF. In both ASCII and EBCDIC environments the value can also be -1 (ANY),
  151. or -2 (ANYCRLF). */
  152. #undef NEWLINE
  153. /* PCRE uses recursive function calls to handle backtracking while matching.
  154. This can sometimes be a problem on systems that have stacks of limited
  155. size. Define NO_RECURSE to any value to get a version that doesn't use
  156. recursion in the match() function; instead it creates its own stack by
  157. steam using pcre_recurse_malloc() to obtain memory from the heap. For more
  158. detail, see the comments and other stuff just above the match() function.
  159. */
  160. #undef NO_RECURSE
  161. /* Name of package */
  162. #undef PACKAGE
  163. /* Define to the address where bug reports for this package should be sent. */
  164. #undef PACKAGE_BUGREPORT
  165. /* Define to the full name of this package. */
  166. #undef PACKAGE_NAME
  167. /* Define to the full name and version of this package. */
  168. #undef PACKAGE_STRING
  169. /* Define to the one symbol short name of this package. */
  170. #undef PACKAGE_TARNAME
  171. /* Define to the home page for this package. */
  172. #undef PACKAGE_URL
  173. /* Define to the version of this package. */
  174. #undef PACKAGE_VERSION
  175. /* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
  176. parentheses (of any kind) in a pattern. This limits the amount of system
  177. stack that is used while compiling a pattern. */
  178. #undef PARENS_NEST_LIMIT
  179. /* to make a symbol visible */
  180. #undef PCRECPP_EXP_DECL
  181. /* to make a symbol visible */
  182. #undef PCRECPP_EXP_DEFN
  183. /* The value of PCREGREP_BUFSIZE determines the size of buffer used by
  184. pcregrep to hold parts of the file it is searching. This is also the
  185. minimum value. The actual amount of memory used by pcregrep is three times
  186. this number, because it allows for the buffering of "before" and "after"
  187. lines. */
  188. #undef PCREGREP_BUFSIZE
  189. /* to make a symbol visible */
  190. #undef PCREPOSIX_EXP_DECL
  191. /* to make a symbol visible */
  192. #undef PCREPOSIX_EXP_DEFN
  193. /* to make a symbol visible */
  194. #undef PCRE_EXP_DATA_DEFN
  195. /* to make a symbol visible */
  196. #undef PCRE_EXP_DECL
  197. /* If you are compiling for a system other than a Unix-like system or
  198. Win32, and it needs some magic to be inserted before the definition
  199. of a function that is exported by the library, define this macro to
  200. contain the relevant magic. If you do not define this macro, a suitable
  201. __declspec value is used for Windows systems; in other environments
  202. "extern" is used for a C compiler and "extern C" for a C++ compiler.
  203. This macro apears at the start of every exported function that is part
  204. of the external API. It does not appear on functions that are "external"
  205. in the C sense, but which are internal to the library. */
  206. #undef PCRE_EXP_DEFN
  207. /* Define to any value if linking statically (TODO: make nice with Libtool) */
  208. #undef PCRE_STATIC
  209. /* When calling PCRE via the POSIX interface, additional working storage is
  210. required for holding the pointers to capturing substrings because PCRE
  211. requires three integers per substring, whereas the POSIX interface provides
  212. only two. If the number of expected substrings is small, the wrapper
  213. function uses space on the stack, because this is faster than using
  214. malloc() for each call. The threshold above which the stack is no longer
  215. used is defined by POSIX_MALLOC_THRESHOLD. */
  216. #undef POSIX_MALLOC_THRESHOLD
  217. /* Define to necessary symbol if this constant uses a non-standard name on
  218. your system. */
  219. #undef PTHREAD_CREATE_JOINABLE
  220. /* Define to 1 if you have the ANSI C header files. */
  221. #undef STDC_HEADERS
  222. /* Define to any value to enable support for Just-In-Time compiling. */
  223. #undef SUPPORT_JIT
  224. /* Define to any value to allow pcregrep to be linked with libbz2, so that it
  225. is able to handle .bz2 files. */
  226. #undef SUPPORT_LIBBZ2
  227. /* Define to any value to allow pcretest to be linked with libedit. */
  228. #undef SUPPORT_LIBEDIT
  229. /* Define to any value to allow pcretest to be linked with libreadline. */
  230. #undef SUPPORT_LIBREADLINE
  231. /* Define to any value to allow pcregrep to be linked with libz, so that it is
  232. able to handle .gz files. */
  233. #undef SUPPORT_LIBZ
  234. /* Define to any value to enable the 16 bit PCRE library. */
  235. #undef SUPPORT_PCRE16
  236. /* Define to any value to enable the 32 bit PCRE library. */
  237. #undef SUPPORT_PCRE32
  238. /* Define to any value to enable the 8 bit PCRE library. */
  239. #undef SUPPORT_PCRE8
  240. /* Define to any value to enable JIT support in pcregrep. */
  241. #undef SUPPORT_PCREGREP_JIT
  242. /* Define to any value to enable support for Unicode properties. */
  243. #undef SUPPORT_UCP
  244. /* Define to any value to enable support for the UTF-8/16/32 Unicode encoding.
  245. This will work even in an EBCDIC environment, but it is incompatible with
  246. the EBCDIC macro. That is, PCRE can support *either* EBCDIC code *or*
  247. ASCII/UTF-8/16/32, but not both at once. */
  248. #undef SUPPORT_UTF
  249. /* Define to any value for valgrind support to find invalid memory reads. */
  250. #undef SUPPORT_VALGRIND
  251. /* Version number of package */
  252. #undef VERSION
  253. /* Define to empty if `const' does not conform to ANSI C. */
  254. #undef const
  255. /* Define to the type of a signed integer type of width exactly 64 bits if
  256. such a type exists and the standard includes do not define it. */
  257. #undef int64_t
  258. /* Define to `unsigned int' if <sys/types.h> does not define. */
  259. #undef size_t