1104352Sphk/* $FreeBSD$ */
2104352Sphk
3168998Sphk#include <machine/endian.h>
4168998Sphk
5104352Sphk/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
6168998Sphk#if BYTE_ORDER == LITTLE_ENDIAN
7104352Sphk#define BYTEORDER 1234
8168998Sphk#else
9168998Sphk#define BYTEORDER 4321
10168998Sphk#endif
11104352Sphk
12104352Sphk/* Define to 1 if you have the `bcopy' function. */
13104352Sphk#define HAVE_BCOPY 1
14104352Sphk
15104352Sphk/* Define to 1 if you have the <dlfcn.h> header file. */
16104352Sphk#define HAVE_DLFCN_H 1
17104352Sphk
18104352Sphk/* Define to 1 if you have the <fcntl.h> header file. */
19104352Sphk#define HAVE_FCNTL_H 1
20104352Sphk
21104352Sphk/* Define to 1 if you have the `getpagesize' function. */
22104352Sphk#define HAVE_GETPAGESIZE 1
23104352Sphk
24104352Sphk/* Define to 1 if you have the <inttypes.h> header file. */
25104352Sphk#define HAVE_INTTYPES_H 1
26104352Sphk
27104352Sphk/* Define to 1 if you have the `memmove' function. */
28104352Sphk#define HAVE_MEMMOVE 1
29104352Sphk
30104352Sphk/* Define to 1 if you have the <memory.h> header file. */
31104352Sphk#define HAVE_MEMORY_H 1
32104352Sphk
33104352Sphk/* Define to 1 if you have a working `mmap' system call. */
34104352Sphk#define HAVE_MMAP 1
35104352Sphk
36104352Sphk/* Define to 1 if you have the <stdint.h> header file. */
37104352Sphk#define HAVE_STDINT_H 1
38104352Sphk
39104352Sphk/* Define to 1 if you have the <stdlib.h> header file. */
40104352Sphk#define HAVE_STDLIB_H 1
41104352Sphk
42104352Sphk/* Define to 1 if you have the <strings.h> header file. */
43104352Sphk#define HAVE_STRINGS_H 1
44104352Sphk
45104352Sphk/* Define to 1 if you have the <string.h> header file. */
46104352Sphk#define HAVE_STRING_H 1
47104352Sphk
48247296Sdelphij/* Define to 1 if you have the <sys/param.h> header file. */
49247296Sdelphij#define HAVE_SYS_PARAM_H 1
50247296Sdelphij
51104352Sphk/* Define to 1 if you have the <sys/stat.h> header file. */
52104352Sphk#define HAVE_SYS_STAT_H 1
53104352Sphk
54104352Sphk/* Define to 1 if you have the <sys/types.h> header file. */
55104352Sphk#define HAVE_SYS_TYPES_H 1
56104352Sphk
57104352Sphk/* Define to 1 if you have the <unistd.h> header file. */
58104352Sphk#define HAVE_UNISTD_H 1
59104352Sphk
60247296Sdelphij/* Define to the sub-directory in which libtool stores uninstalled libraries.
61247296Sdelphij   */
62247296Sdelphij#undef LT_OBJDIR
63247296Sdelphij
64104352Sphk/* Define to the address where bug reports for this package should be sent. */
65247296Sdelphij#define PACKAGE_BUGREPORT "expat-bugs@libexpat.org"
66104352Sphk
67104352Sphk/* Define to the full name of this package. */
68104352Sphk#define PACKAGE_NAME "expat"
69104352Sphk
70104352Sphk/* Define to the full name and version of this package. */
71247296Sdelphij#define PACKAGE_STRING "expat 2.1.0"
72104352Sphk
73104352Sphk/* Define to the one symbol short name of this package. */
74104352Sphk#define PACKAGE_TARNAME "expat"
75104352Sphk
76247296Sdelphij/* Define to the home page for this package. */
77247296Sdelphij#define PACKAGE_URL ""
78247296Sdelphij
79104352Sphk/* Define to the version of this package. */
80247296Sdelphij#define PACKAGE_VERSION "2.1.0"
81104352Sphk
82104352Sphk/* Define to 1 if you have the ANSI C header files. */
83104352Sphk#define STDC_HEADERS 1
84104352Sphk
85104352Sphk/* whether byteorder is bigendian */
86168998Sphk#if BYTE_ORDER == BIG_ENDIAN
87168998Sphk#define WORDS_BIGENDIAN
88168998Sphk#else
89168998Sphk#undef WORDS_BIGENDIAN
90168998Sphk#endif
91104352Sphk
92104352Sphk/* Define to specify how much context to retain around the current parse
93104352Sphk   point. */
94104352Sphk#define XML_CONTEXT_BYTES 1024
95104352Sphk
96104352Sphk/* Define to make parameter entity parsing functionality available. */
97104352Sphk#define XML_DTD 1
98104352Sphk
99104352Sphk/* Define to make XML Namespaces functionality available. */
100104352Sphk#define XML_NS 1
101104352Sphk
102247296Sdelphij/* Define to __FUNCTION__ or "" if `__func__' does not conform to ANSI C. */
103247296Sdelphij/* #undef __func__ */
104247296Sdelphij
105104352Sphk/* Define to empty if `const' does not conform to ANSI C. */
106104352Sphk/* #undef const */
107104352Sphk
108247296Sdelphij/* Define to `long int' if <sys/types.h> does not define. */
109104352Sphk/* #undef off_t */
110104352Sphk
111247296Sdelphij/* Define to `unsigned int' if <sys/types.h> does not define. */
112104352Sphk/* #undef size_t */
113