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