summaryrefslogtreecommitdiffstats
path: root/Utilities/cmexpat/lib/winconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'Utilities/cmexpat/lib/winconfig.h')
-rw-r--r--Utilities/cmexpat/lib/winconfig.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/Utilities/cmexpat/lib/winconfig.h b/Utilities/cmexpat/lib/winconfig.h
index d7dad38..c9dbfea 100644
--- a/Utilities/cmexpat/lib/winconfig.h
+++ b/Utilities/cmexpat/lib/winconfig.h
@@ -17,7 +17,24 @@
#include <memory.h>
#include <string.h>
-#include "expat_config.h"
+
+#if defined(HAVE_EXPAT_CONFIG_H) /* e.g. MinGW */
+# include <expat_config.h>
+#else /* !defined(HAVE_EXPAT_CONFIG_H) */
+
+
+#define XML_NS 1
+#define XML_DTD 1
+#define XML_CONTEXT_BYTES 1024
+
+/* we will assume all Windows platforms are little endian */
+#define BYTEORDER 1234
+
+/* Windows has memmove() available. */
+#define HAVE_MEMMOVE
+
+
+#endif /* !defined(HAVE_EXPAT_CONFIG_H) */
#if defined(_MSC_VER)
# pragma warning(push,1)