1*1230fdc1SLionel Sambuc /*================================================================ 2*1230fdc1SLionel Sambuc ** Copyright 2000, Clark Cooper 3*1230fdc1SLionel Sambuc ** All rights reserved. 4*1230fdc1SLionel Sambuc ** 5*1230fdc1SLionel Sambuc ** This is free software. You are permitted to copy, distribute, or modify 6*1230fdc1SLionel Sambuc ** it under the terms of the MIT/X license (contained in the COPYING file 7*1230fdc1SLionel Sambuc ** with this distribution.) 8*1230fdc1SLionel Sambuc ** 9*1230fdc1SLionel Sambuc */ 10*1230fdc1SLionel Sambuc 11*1230fdc1SLionel Sambuc #ifndef MACCONFIG_H 12*1230fdc1SLionel Sambuc #define MACCONFIG_H 13*1230fdc1SLionel Sambuc 14*1230fdc1SLionel Sambuc 15*1230fdc1SLionel Sambuc /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */ 16*1230fdc1SLionel Sambuc #define BYTEORDER 4321 17*1230fdc1SLionel Sambuc 18*1230fdc1SLionel Sambuc /* Define to 1 if you have the `bcopy' function. */ 19*1230fdc1SLionel Sambuc #undef HAVE_BCOPY 20*1230fdc1SLionel Sambuc 21*1230fdc1SLionel Sambuc /* Define to 1 if you have the `memmove' function. */ 22*1230fdc1SLionel Sambuc #define HAVE_MEMMOVE 23*1230fdc1SLionel Sambuc 24*1230fdc1SLionel Sambuc /* Define to 1 if you have a working `mmap' system call. */ 25*1230fdc1SLionel Sambuc #undef HAVE_MMAP 26*1230fdc1SLionel Sambuc 27*1230fdc1SLionel Sambuc /* Define to 1 if you have the <unistd.h> header file. */ 28*1230fdc1SLionel Sambuc #undef HAVE_UNISTD_H 29*1230fdc1SLionel Sambuc 30*1230fdc1SLionel Sambuc /* whether byteorder is bigendian */ 31*1230fdc1SLionel Sambuc #define WORDS_BIGENDIAN 32*1230fdc1SLionel Sambuc 33*1230fdc1SLionel Sambuc /* Define to specify how much context to retain around the current parse 34*1230fdc1SLionel Sambuc point. */ 35*1230fdc1SLionel Sambuc #undef XML_CONTEXT_BYTES 36*1230fdc1SLionel Sambuc 37*1230fdc1SLionel Sambuc /* Define to make parameter entity parsing functionality available. */ 38*1230fdc1SLionel Sambuc #define XML_DTD 39*1230fdc1SLionel Sambuc 40*1230fdc1SLionel Sambuc /* Define to make XML Namespaces functionality available. */ 41*1230fdc1SLionel Sambuc #define XML_NS 42*1230fdc1SLionel Sambuc 43*1230fdc1SLionel Sambuc /* Define to empty if `const' does not conform to ANSI C. */ 44*1230fdc1SLionel Sambuc #undef const 45*1230fdc1SLionel Sambuc 46*1230fdc1SLionel Sambuc /* Define to `long' if <sys/types.h> does not define. */ 47*1230fdc1SLionel Sambuc #define off_t long 48*1230fdc1SLionel Sambuc 49*1230fdc1SLionel Sambuc /* Define to `unsigned' if <sys/types.h> does not define. */ 50*1230fdc1SLionel Sambuc #undef size_t 51*1230fdc1SLionel Sambuc 52*1230fdc1SLionel Sambuc 53*1230fdc1SLionel Sambuc #endif /* ifndef MACCONFIG_H */ 54