blob: 0a7f39dd452e0c04fc2221586d1b3f63931ff1eb [file] [log] [blame]
Fred Drake08317ae2003-10-21 15:38:55 +00001/*================================================================
2** Copyright 2000, Clark Cooper
3** All rights reserved.
4**
5** This is free software. You are permitted to copy, distribute, or modify
6** it under the terms of the MIT/X license (contained in the COPYING file
7** with this distribution.)
8**
9*/
10
11#ifndef MACCONFIG_H
12#define MACCONFIG_H
13
14
15/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
16#define BYTEORDER 4321
17
18/* Define to 1 if you have the `bcopy' function. */
19#undef HAVE_BCOPY
20
21/* Define to 1 if you have the <dlfcn.h> header file. */
22#undef HAVE_DLFCN_H
23
24/* Define to 1 if you have the <fcntl.h> header file. */
25#undef HAVE_FCNTL_H
26
27/* Define to 1 if you have the `getpagesize' function. */
28#undef HAVE_GETPAGESIZE
29
30/* Define to 1 if you have the <inttypes.h> header file. */
31#undef HAVE_INTTYPES_H
32
33/* Define to 1 if you have the `memmove' function. */
34#define HAVE_MEMMOVE
35
36/* Define to 1 if you have the <memory.h> header file. */
37#undef HAVE_MEMORY_H
38
39/* Define to 1 if you have a working `mmap' system call. */
40#undef HAVE_MMAP
41
42/* Define to 1 if you have the <stdint.h> header file. */
43#undef HAVE_STDINT_H
44
Fred Drake08317ae2003-10-21 15:38:55 +000045/* Define to 1 if you have the <strings.h> header file. */
46#undef HAVE_STRINGS_H
47
Fred Drake08317ae2003-10-21 15:38:55 +000048/* Define to 1 if you have the <sys/stat.h> header file. */
49#undef HAVE_SYS_STAT_H
50
51/* Define to 1 if you have the <sys/types.h> header file. */
52#undef HAVE_SYS_TYPES_H
53
54/* Define to 1 if you have the <unistd.h> header file. */
55#undef HAVE_UNISTD_H
56
57/* Define to the address where bug reports for this package should be sent. */
58#undef PACKAGE_BUGREPORT
59
60/* Define to the full name of this package. */
61#undef PACKAGE_NAME
62
63/* Define to the full name and version of this package. */
64#undef PACKAGE_STRING
65
66/* Define to the one symbol short name of this package. */
67#undef PACKAGE_TARNAME
68
69/* Define to the version of this package. */
70#undef PACKAGE_VERSION
71
72/* Define to 1 if you have the ANSI C header files. */
73#define STDC_HEADERS
74
75/* whether byteorder is bigendian */
76#define WORDS_BIGENDIAN
77
78/* Define to specify how much context to retain around the current parse
79 point. */
80#undef XML_CONTEXT_BYTES
81
82/* Define to make parameter entity parsing functionality available. */
83#define XML_DTD
84
85/* Define to make XML Namespaces functionality available. */
86#define XML_NS
87
88/* Define to empty if `const' does not conform to ANSI C. */
89#undef const
90
91/* Define to `long' if <sys/types.h> does not define. */
92#define off_t long
93
94/* Define to `unsigned' if <sys/types.h> does not define. */
95#undef size_t
96
97
98#endif /* ifndef MACCONFIG_H */