1/* tre-config.h.  This file defines all compile time definitions
2   that are needed in `regex.h' for Win32. */
3
4/* Define to 1 if you have `alloca', as a function or macro. */
5#define HAVE_ALLOCA 1
6
7/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
8 */
9#define HAVE_ALLOCA_H 1
10
11/* Define to 1 if you have the <libutf8.h> header file. */
12/* #undef HAVE_LIBUTF8_H */
13
14/* Define to 1 if the system has the type `reg_errcode_t'. */
15/* #undef HAVE_REG_ERRCODE_T */
16
17/* Define to 1 if you have the <sys/types.h> header file. */
18#define HAVE_SYS_TYPES_H 1
19
20/* Define to 1 if you have the <wchar.h> header file. */
21#define HAVE_WCHAR_H 1
22
23/* Define if you want to enable approximate matching functionality. */
24#define TRE_APPROX 1
25
26/* Define to enable multibyte character set support. */
27#define TRE_MULTIBYTE 1
28
29/* Define to the absolute path to the system regex.h */
30/* #undef TRE_SYSTEM_REGEX_H_PATH */
31
32/* Define if you want TRE to use alloca() instead of malloc() when allocating
33   memory needed for regexec operations. */
34#define TRE_USE_ALLOCA 1
35
36/* Define to include the system regex.h from TRE regex.h */
37/* #undef TRE_USE_SYSTEM_REGEX_H */
38
39/* Define to enable wide character (wchar_t) support. */
40#define TRE_WCHAR 1
41
42/* TRE version string. */
43#define TRE_VERSION "@TRE_VERSION@"
44
45/* TRE version level 1. */
46#define TRE_VERSION_1 @TRE_VERSION_1@
47
48/* TRE version level 2. */
49#define TRE_VERSION_2 @TRE_VERSION_2@
50
51/* TRE version level 3. */
52#define TRE_VERSION_3 @TRE_VERSION_3@
53