blob: 3e23f4873fda40129b3f21df86521150ecab0fbb [file] [log] [blame]
Elliott Hughes72472942018-01-10 08:36:10 -08001/* expat_config.h.cmake. Based upon generated expat_config.h.in. */
2
3/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
4#cmakedefine BYTEORDER @BYTEORDER@
5
6/* Define to 1 if you have the `arc4random' function. */
7#cmakedefine HAVE_ARC4RANDOM
8
9/* Define to 1 if you have the `arc4random_buf' function. */
10#cmakedefine HAVE_ARC4RANDOM_BUF
11
12/* Define to 1 if you have the `bcopy' function. */
13#cmakedefine HAVE_BCOPY
14
15/* Define to 1 if you have the <dlfcn.h> header file. */
16#cmakedefine HAVE_DLFCN_H
17
18/* Define to 1 if you have the <fcntl.h> header file. */
19#cmakedefine HAVE_FCNTL_H
20
21/* Define to 1 if you have the `getpagesize' function. */
22#cmakedefine HAVE_GETPAGESIZE
23
24/* Define to 1 if you have the `getrandom' function. */
25#cmakedefine HAVE_GETRANDOM
26
27/* Define to 1 if you have the <inttypes.h> header file. */
28#cmakedefine HAVE_INTTYPES_H
29
30/* Define to 1 if you have the `bsd' library (-lbsd). */
31#cmakedefine HAVE_LIBBSD
32
33/* Define to 1 if you have the `memmove' function. */
34#cmakedefine HAVE_MEMMOVE
35
36/* Define to 1 if you have the <memory.h> header file. */
37#cmakedefine HAVE_MEMORY_H
38
39/* Define to 1 if you have a working `mmap' system call. */
40#cmakedefine HAVE_MMAP
41
42/* Define to 1 if you have the <stdint.h> header file. */
43#cmakedefine HAVE_STDINT_H
44
45/* Define to 1 if you have the <stdlib.h> header file. */
46#cmakedefine HAVE_STDLIB_H
47
48/* Define to 1 if you have the <strings.h> header file. */
49#cmakedefine HAVE_STRINGS_H
50
51/* Define to 1 if you have the <string.h> header file. */
52#cmakedefine HAVE_STRING_H
53
54/* Define to 1 if you have `syscall' and `SYS_getrandom'. */
55#cmakedefine HAVE_SYSCALL_GETRANDOM
56
57/* Define to 1 if you have the <sys/stat.h> header file. */
58#cmakedefine HAVE_SYS_STAT_H
59
60/* Define to 1 if you have the <sys/types.h> header file. */
61#cmakedefine HAVE_SYS_TYPES_H
62
63/* Define to 1 if you have the <unistd.h> header file. */
64#cmakedefine HAVE_UNISTD_H
65
66/* Define to the address where bug reports for this package should be sent. */
67#cmakedefine PACKAGE_BUGREPORT
68
69/* Define to the full name of this package. */
70#cmakedefine PACKAGE_NAME
71
72/* Define to the full name and version of this package. */
73#cmakedefine PACKAGE_STRING
74
75/* Define to the one symbol short name of this package. */
76#cmakedefine PACKAGE_TARNAME
77
78/* Define to the version of this package. */
79#cmakedefine PACKAGE_VERSION
80
81/* Define to 1 if you have the ANSI C header files. */
82#cmakedefine STDC_HEADERS
83
84/* whether byteorder is bigendian */
85#cmakedefine WORDS_BIGENDIAN
86
87/* Define to specify how much context to retain around the current parse
88 point. */
89#cmakedefine XML_CONTEXT_BYTES @XML_CONTEXT_BYTES@
90
91/* Define to make parameter entity parsing functionality available. */
92#cmakedefine XML_DTD
93
94/* Define to make XML Namespaces functionality available. */
95#cmakedefine XML_NS
96
Elliott Hughesaaec48e2018-08-16 16:29:01 -070097#if ! defined(_WIN32)
98/* Define to extract entropy from /dev/urandom. */
99#cmakedefine XML_DEV_URANDOM
100#endif
101
102/* Define to use UTF-16 chars (two bytes). */
103#cmakedefine XML_UNICODE
104
105/* Define to use wchar_t as UTF-16 char type instead of unsigned short. */
106#cmakedefine XML_UNICODE_WCHAR_T
107
Elliott Hughes72472942018-01-10 08:36:10 -0800108/* Define to __FUNCTION__ or "" if `__func__' does not conform to ANSI C. */
109#ifdef _MSC_VER
110# define __func__ __FUNCTION__
111#endif
112
113/* Define to `long' if <sys/types.h> does not define. */
114#cmakedefine off_t @OFF_T@
115
116/* Define to `unsigned' if <sys/types.h> does not define. */
117#cmakedefine size_t @SIZE_T@