From 2186041a07d083d110c35fb122da331b046e2545 Mon Sep 17 00:00:00 2001 From: Greg Stein Date: Mon, 20 May 2002 11:01:29 +0000 Subject: [PATCH] Karl noticed that Expat didn't build on Windows any more. winconfig.h needs to state that memmove() exists. --- expat/lib/winconfig.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/expat/lib/winconfig.h b/expat/lib/winconfig.h index 073452b9..922ba106 100644 --- a/expat/lib/winconfig.h +++ b/expat/lib/winconfig.h @@ -24,4 +24,7 @@ /* we will assume all Windows platforms are little endian */ #define BYTEORDER 1234 +/* Windows has memmove() available. */ +#define HAVE_MEMMOVE + #endif /* ndef WINCONFIG_H */