blob: e1d7eab89927ab8c0f0b28682fefbe8ced97fde9 [file] [log] [blame]
Elliott Hughes35e432d2012-09-09 14:23:38 -07001/* expat_config.h. Generated from expat_config.h.in by configure. */
Elliott Hughes72472942018-01-10 08:36:10 -08002/* expat_config.h.in. Generated from configure.ac by autoheader. */
The Android Open Source Projectb80e2872009-03-03 19:29:30 -08003
Haibo Huangfd5e81a2019-06-20 12:09:36 -07004/* Define if building universal (internal helper macro) */
5/* #undef AC_APPLE_UNIVERSAL_BUILD */
6
7/* 1234 = LILENDIAN, 4321 = BIGENDIAN */
The Android Open Source Projectb80e2872009-03-03 19:29:30 -08008#define BYTEORDER 1234
9
Elliott Hughes72472942018-01-10 08:36:10 -080010/* Define to 1 if you have the `arc4random' function. */
11#if defined(__APPLE__) || defined(__BIONIC__)
12#define HAVE_ARC4RANDOM 1
13#endif
14
15/* Define to 1 if you have the `arc4random_buf' function. */
16#if defined(__APPLE__) || defined(__BIONIC__)
17#define HAVE_ARC4RANDOM_BUF 1
18#endif
19
The Android Open Source Projectb80e2872009-03-03 19:29:30 -080020/* Define to 1 if you have the <dlfcn.h> header file. */
21#define HAVE_DLFCN_H 1
22
23/* Define to 1 if you have the <fcntl.h> header file. */
24#define HAVE_FCNTL_H 1
25
26/* Define to 1 if you have the `getpagesize' function. */
27#define HAVE_GETPAGESIZE 1
28
Elliott Hughes72472942018-01-10 08:36:10 -080029/* Define to 1 if you have the `getrandom' function. */
Colin Cross2cd04902021-08-16 15:53:15 -070030#if defined(__BIONIC__) || defined(ANDROID_HOST_MUSL)
Elliott Hughes72472942018-01-10 08:36:10 -080031#define HAVE_GETRANDOM 1
32#endif
33
The Android Open Source Projectb80e2872009-03-03 19:29:30 -080034/* Define to 1 if you have the <inttypes.h> header file. */
35#define HAVE_INTTYPES_H 1
36
Elliott Hughes72472942018-01-10 08:36:10 -080037/* Define to 1 if you have the `bsd' library (-lbsd). */
38/* #undef HAVE_LIBBSD */
39
The Android Open Source Projectb80e2872009-03-03 19:29:30 -080040/* Define to 1 if you have a working `mmap' system call. */
41#define HAVE_MMAP 1
42
43/* Define to 1 if you have the <stdint.h> header file. */
44#define HAVE_STDINT_H 1
45
Elliott Hughesf898dc22022-02-23 17:34:51 -080046/* Define to 1 if you have the <stdio.h> header file. */
47#define HAVE_STDIO_H 1
48
The Android Open Source Projectb80e2872009-03-03 19:29:30 -080049/* Define to 1 if you have the <stdlib.h> header file. */
50#define HAVE_STDLIB_H 1
51
52/* Define to 1 if you have the <strings.h> header file. */
53#define HAVE_STRINGS_H 1
54
55/* Define to 1 if you have the <string.h> header file. */
56#define HAVE_STRING_H 1
57
Elliott Hughes72472942018-01-10 08:36:10 -080058/* Define to 1 if you have `syscall' and `SYS_getrandom'. */
Elliott Hughes33bf9752021-08-10 17:33:34 -070059#if 0 /* We only get here for glibc and Windows (where the better choices aren't available) and they don't have this fallback either. */
Elliott Hughes72472942018-01-10 08:36:10 -080060#define HAVE_SYSCALL_GETRANDOM 1
61#endif
62
Elliott Hughes35e432d2012-09-09 14:23:38 -070063/* Define to 1 if you have the <sys/param.h> header file. */
64#define HAVE_SYS_PARAM_H 1
65
The Android Open Source Projectb80e2872009-03-03 19:29:30 -080066/* Define to 1 if you have the <sys/stat.h> header file. */
67#define HAVE_SYS_STAT_H 1
68
69/* Define to 1 if you have the <sys/types.h> header file. */
70#define HAVE_SYS_TYPES_H 1
71
72/* Define to 1 if you have the <unistd.h> header file. */
73#define HAVE_UNISTD_H 1
74
Elliott Hughes72472942018-01-10 08:36:10 -080075/* Define to the sub-directory where libtool stores uninstalled libraries. */
Elliott Hughes35e432d2012-09-09 14:23:38 -070076#define LT_OBJDIR ".libs/"
77
Elliott Hughes72472942018-01-10 08:36:10 -080078/* Name of package */
79#define PACKAGE "expat"
80
The Android Open Source Projectb80e2872009-03-03 19:29:30 -080081/* Define to the address where bug reports for this package should be sent. */
82#define PACKAGE_BUGREPORT "expat-bugs@libexpat.org"
83
84/* Define to the full name of this package. */
85#define PACKAGE_NAME "expat"
86
87/* Define to the full name and version of this package. */
Elliott Hughesf898dc22022-02-23 17:34:51 -080088#define PACKAGE_STRING "expat 2.4.6"
The Android Open Source Projectb80e2872009-03-03 19:29:30 -080089
90/* Define to the one symbol short name of this package. */
91#define PACKAGE_TARNAME "expat"
92
Elliott Hughes35e432d2012-09-09 14:23:38 -070093/* Define to the home page for this package. */
94#define PACKAGE_URL ""
95
The Android Open Source Projectb80e2872009-03-03 19:29:30 -080096/* Define to the version of this package. */
Elliott Hughesf898dc22022-02-23 17:34:51 -080097#define PACKAGE_VERSION "2.4.6"
The Android Open Source Projectb80e2872009-03-03 19:29:30 -080098
Elliott Hughesf898dc22022-02-23 17:34:51 -080099/* Define to 1 if all of the C90 standard headers exist (not just the ones
100 required in a freestanding environment). This macro is provided for
101 backward compatibility; new code need not use it. */
The Android Open Source Projectb80e2872009-03-03 19:29:30 -0800102#define STDC_HEADERS 1
103
Elliott Hughes72472942018-01-10 08:36:10 -0800104/* Version number of package */
Elliott Hughesf898dc22022-02-23 17:34:51 -0800105#define VERSION "2.4.6"
Elliott Hughes72472942018-01-10 08:36:10 -0800106
Haibo Huangfd5e81a2019-06-20 12:09:36 -0700107/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
108 significant byte first (like Motorola and SPARC, unlike Intel). */
109#if defined AC_APPLE_UNIVERSAL_BUILD
110# if defined __BIG_ENDIAN__
111# define WORDS_BIGENDIAN 1
112# endif
113#else
114# ifndef WORDS_BIGENDIAN
115/* # undef WORDS_BIGENDIAN */
116# endif
117#endif
The Android Open Source Projectb80e2872009-03-03 19:29:30 -0800118
Haibo Huang40a71912019-10-11 11:13:39 -0700119/* Define to allow retrieving the byte offsets for attribute names and values.
120 */
121/* #undef XML_ATTR_INFO */
122
The Android Open Source Projectb80e2872009-03-03 19:29:30 -0800123/* Define to specify how much context to retain around the current parse
124 point. */
125#define XML_CONTEXT_BYTES 1024
126
Elliott Hughes72472942018-01-10 08:36:10 -0800127/* Define to include code reading entropy from `/dev/urandom'. */
128#if defined(__GLIBC__)
129#define XML_DEV_URANDOM 1
130#endif
131
The Android Open Source Projectb80e2872009-03-03 19:29:30 -0800132/* Define to make parameter entity parsing functionality available. */
133#define XML_DTD 1
134
135/* Define to make XML Namespaces functionality available. */
136#define XML_NS 1
137
The Android Open Source Projectb80e2872009-03-03 19:29:30 -0800138/* Define to empty if `const' does not conform to ANSI C. */
139/* #undef const */
140
Elliott Hughes35e432d2012-09-09 14:23:38 -0700141/* Define to `long int' if <sys/types.h> does not define. */
The Android Open Source Projectb80e2872009-03-03 19:29:30 -0800142/* #undef off_t */
143
Elliott Hughes35e432d2012-09-09 14:23:38 -0700144/* Define to `unsigned int' if <sys/types.h> does not define. */
The Android Open Source Projectb80e2872009-03-03 19:29:30 -0800145/* #undef size_t */