1*1230fdc1SLionel Sambuc #ifndef AMIGACONFIG_H 2*1230fdc1SLionel Sambuc #define AMIGACONFIG_H 3*1230fdc1SLionel Sambuc 4*1230fdc1SLionel Sambuc /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */ 5*1230fdc1SLionel Sambuc #define BYTEORDER 4321 6*1230fdc1SLionel Sambuc 7*1230fdc1SLionel Sambuc /* Define to 1 if you have the `bcopy' function. */ 8*1230fdc1SLionel Sambuc #define HAVE_BCOPY 1 9*1230fdc1SLionel Sambuc 10*1230fdc1SLionel Sambuc /* Define to 1 if you have the <check.h> header file. */ 11*1230fdc1SLionel Sambuc #undef HAVE_CHECK_H 12*1230fdc1SLionel Sambuc 13*1230fdc1SLionel Sambuc /* Define to 1 if you have the `memmove' function. */ 14*1230fdc1SLionel Sambuc #define HAVE_MEMMOVE 1 15*1230fdc1SLionel Sambuc 16*1230fdc1SLionel Sambuc /* Define to 1 if you have the <unistd.h> header file. */ 17*1230fdc1SLionel Sambuc #define HAVE_UNISTD_H 1 18*1230fdc1SLionel Sambuc 19*1230fdc1SLionel Sambuc /* whether byteorder is bigendian */ 20*1230fdc1SLionel Sambuc #define WORDS_BIGENDIAN 21*1230fdc1SLionel Sambuc 22*1230fdc1SLionel Sambuc /* Define to specify how much context to retain around the current parse 23*1230fdc1SLionel Sambuc point. */ 24*1230fdc1SLionel Sambuc #define XML_CONTEXT_BYTES 1024 25*1230fdc1SLionel Sambuc 26*1230fdc1SLionel Sambuc /* Define to make parameter entity parsing functionality available. */ 27*1230fdc1SLionel Sambuc #define XML_DTD 28*1230fdc1SLionel Sambuc 29*1230fdc1SLionel Sambuc /* Define to make XML Namespaces functionality available. */ 30*1230fdc1SLionel Sambuc #define XML_NS 31*1230fdc1SLionel Sambuc 32*1230fdc1SLionel Sambuc #endif /* AMIGACONFIG_H */ 33