summaryrefslogtreecommitdiff
path: root/xml/expat/acconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'xml/expat/acconfig.h')
-rw-r--r--xml/expat/acconfig.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/xml/expat/acconfig.h b/xml/expat/acconfig.h
new file mode 100644
index 000000000..1283ad61b
--- /dev/null
+++ b/xml/expat/acconfig.h
@@ -0,0 +1,23 @@
+/* This file is used by autoheader to add items to expat_config.h.in */
+
+#ifdef WORDS_BIGENDIAN
+#define XML_BYTE_ORDER 21
+#else
+#define XML_BYTE_ORDER 12
+#endif
+
+@BOTTOM@
+
+#define XML_NS
+#define XML_DTD
+
+#define XML_CONTEXT_BYTES 1024
+
+#ifndef HAVE_MEMMOVE
+#ifdef HAVE_BCOPY
+#define memmove(d,s,l) bcopy((s),(d),(l))
+#else
+#define memmove(d,s,l) ;punting on memmove;
+#endif
+
+#endif