expat/lib amigaconfig.h, NONE, 1.1 xmlparse.c, 1.145, 1.146 xmlrole.c, 1.20, 1.21 xmltok.c, 1.33, 1.34
"Steven Solie" <[email protected]> Fri, 25 Feb 2005 17:38:15 -0800
| Newsgroups | gmane.text.xml.expat.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/expat/expat/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26208 Modified Files: xmlparse.c xmlrole.c xmltok.c Added Files: amigaconfig.h Log Message: Added AmigaOS support. --- NEW FILE: amigaconfig.h --- #ifndef AMIGACONFIG_H #define AMIGACONFIG_H /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */ #define BYTEORDER 4321 /* Define to 1 if you have the `bcopy' function. */ #define HAVE_BCOPY /* Define to 1 if you have the <fcntl.h> header file. */ #define HAVE_FCNTL_H /* Define to 1 if you have the `memmove' function. */ #define HAVE_MEMMOVE /* Define to 1 if you have the <stdlib.h> header file. */ #define HAVE_STDLIB_H /* Define to 1 if you have the <string.h> header file. */ #define HAVE_STRING_H /* Define to 1 if you have the <sys/stat.h> header file. */ #define HAVE_SYS_STAT_H /* Define to 1 if you have the <sys/types.h> header file. */ #define HAVE_SYS_TYPES_H /* Define to 1 if you have the <unistd.h> header file. */ #define HAVE_UNISTD_H /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS /* whether byteorder is bigendian */ #define WORDS_BIGENDIAN /* Define to specify how much context to retain around the current parse point. */ #define XML_CONTEXT_BYTES 1024 /* Define to make parameter entity parsing functionality available. */ #define XML_DTD 1 /* Define to make XML Namespaces functionality available. */ #define XML_NS 1 #endif Index: xmlparse.c =================================================================== RCS file: /cvsroot/expat/expat/lib/xmlparse.c,v retrieving revision 1.145 retrieving revision 1.146 diff -u -d -r1.145 -r1.146 --- xmlparse.c 29 Jan 2005 04:48:44 -0000 1.145 +++ xmlparse.c 26 Feb 2005 01:38:13 -0000 1.146 @@ -12,6 +12,8 @@ #include "winconfig.h" #elif defined(MACOS_CLASSIC) #include "macconfig.h" +#elif defined(__amigaos4__) +#include "amigaconfig.h" #elif defined(HAVE_EXPAT_CONFIG_H) #include <expat_config.h> #endif /* ndef COMPILED_FROM_DSP */ Index: xmlrole.c =================================================================== RCS file: /cvsroot/expat/expat/lib/xmlrole.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- xmlrole.c 26 Nov 2004 15:00:38 -0000 1.20 +++ xmlrole.c 26 Feb 2005 01:38:13 -0000 1.21 @@ -8,6 +8,8 @@ #include "winconfig.h" #elif defined(MACOS_CLASSIC) #include "macconfig.h" +#elif defined(__amigaos4__) +#include "amigaconfig.h" #else #ifdef HAVE_EXPAT_CONFIG_H #include <expat_config.h> Index: xmltok.c =================================================================== RCS file: /cvsroot/expat/expat/lib/xmltok.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- xmltok.c 26 Nov 2004 14:56:52 -0000 1.33 +++ xmltok.c 26 Feb 2005 01:38:13 -0000 1.34 @@ -8,6 +8,8 @@ #include "winconfig.h" #elif defined(MACOS_CLASSIC) #include "macconfig.h" +#elif defined(__amigaos4__) +#include "amigaconfig.h" #else #ifdef HAVE_EXPAT_CONFIG_H #include <expat_config.h>