1/* 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 <dlfcn.h> header file. */
13#cmakedefine HAVE_DLFCN_H
14
15/* Define to 1 if you have the <fcntl.h> header file. */
16#cmakedefine HAVE_FCNTL_H
17
18/* Define to 1 if you have the `getpagesize' function. */
19#cmakedefine HAVE_GETPAGESIZE
20
21/* Define to 1 if you have the `getrandom' function. */
22#cmakedefine HAVE_GETRANDOM
23
24/* Define to 1 if you have the <inttypes.h> header file. */
25#cmakedefine HAVE_INTTYPES_H
26
27/* Define to 1 if you have the `bsd' library (-lbsd). */
28#cmakedefine HAVE_LIBBSD
29
30/* Define to 1 if you have the <memory.h> header file. */
31#cmakedefine HAVE_MEMORY_H
32
33/* Define to 1 if you have a working `mmap' system call. */
34#cmakedefine HAVE_MMAP
35
36/* Define to 1 if you have the <stdint.h> header file. */
37#cmakedefine HAVE_STDINT_H
38
39/* Define to 1 if you have the <stdlib.h> header file. */
40#cmakedefine HAVE_STDLIB_H
41
42/* Define to 1 if you have the <strings.h> header file. */
43#cmakedefine HAVE_STRINGS_H
44
45/* Define to 1 if you have the <string.h> header file. */
46#cmakedefine HAVE_STRING_H
47
48/* Define to 1 if you have `syscall' and `SYS_getrandom'. */
49#cmakedefine HAVE_SYSCALL_GETRANDOM
50
51/* Define to 1 if you have the <sys/stat.h> header file. */
52#cmakedefine HAVE_SYS_STAT_H
53
54/* Define to 1 if you have the <sys/types.h> header file. */
55#cmakedefine HAVE_SYS_TYPES_H
56
57/* Define to 1 if you have the <unistd.h> header file. */
58#cmakedefine HAVE_UNISTD_H
59
60/* Define to 1 if you have the ANSI C header files. */
61#cmakedefine STDC_HEADERS
62
63/* whether byteorder is bigendian */
64#cmakedefine WORDS_BIGENDIAN
65
66/* Define to allow retrieving the byte offsets for attribute names and values.
67 */
68#cmakedefine XML_ATTR_INFO
69
70/* Define to specify how much context to retain around the current parse
71   point. */
72#define XML_CONTEXT_BYTES 1024
73
74#if ! defined(_WIN32)
75/* Define to include code reading entropy from `/dev/urandom'. */
76  #cmakedefine XML_DEV_URANDOM
77#endif
78
79/* Define to make parameter entity parsing functionality available. */
80/* #undef XML_DTD */
81
82/* Define to make XML Namespaces functionality available. */
83/* #undef XML_NS */
84
85/* Define to __FUNCTION__ or "" if `__func__' does not conform to ANSI C. */
86#ifdef _MSC_VER
87#  define __func__ __FUNCTION__
88#endif
89