diff options
author | nick@chromium.org <nick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-14 19:20:47 +0000 |
---|---|---|
committer | nick@chromium.org <nick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-14 19:20:47 +0000 |
commit | c0ba2a0d704149385556397589de783130ea6d2f (patch) | |
tree | 864c038f029fd18944b9b935705ce2a1ef38fce8 /third_party/expat/files/lib/amigaconfig.h | |
parent | 26af3f22d39575333e4a0269a0adff112444a77f (diff) | |
download | chromium_src-c0ba2a0d704149385556397589de783130ea6d2f.zip chromium_src-c0ba2a0d704149385556397589de783130ea6d2f.tar.gz chromium_src-c0ba2a0d704149385556397589de783130ea6d2f.tar.bz2 |
Add expat, a lightweight xml parser, to third_party.
Libjingle depends on it.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/203022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26139 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/expat/files/lib/amigaconfig.h')
-rw-r--r-- | third_party/expat/files/lib/amigaconfig.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/third_party/expat/files/lib/amigaconfig.h b/third_party/expat/files/lib/amigaconfig.h new file mode 100644 index 0000000..86c61150 --- /dev/null +++ b/third_party/expat/files/lib/amigaconfig.h @@ -0,0 +1,32 @@ +#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 1 + +/* Define to 1 if you have the <check.h> header file. */ +#undef HAVE_CHECK_H + +/* Define to 1 if you have the `memmove' function. */ +#define HAVE_MEMMOVE 1 + +/* Define to 1 if you have the <unistd.h> header file. */ +#define HAVE_UNISTD_H 1 + +/* 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 + +/* Define to make XML Namespaces functionality available. */ +#define XML_NS + +#endif /* AMIGACONFIG_H */ |