summaryrefslogtreecommitdiff
path: root/ext/xml/expat/xmlparse.c
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2002-11-17 21:29:16 +0000
committerSebastian Bergmann <sebastian@php.net>2002-11-17 21:29:16 +0000
commitb4e42dd43f6ceb4445a11808ff448b9f7bb477cf (patch)
treecc7066ec365b75acadbe8a43a22b09c3a681b431 /ext/xml/expat/xmlparse.c
parenta10e0b6d8e57f272229aa301db3de5f5540a7428 (diff)
downloadphp-git-b4e42dd43f6ceb4445a11808ff448b9f7bb477cf.tar.gz
Fix Win32 build. (Lots of linkage warnings remain!)
Diffstat (limited to 'ext/xml/expat/xmlparse.c')
-rw-r--r--ext/xml/expat/xmlparse.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/xml/expat/xmlparse.c b/ext/xml/expat/xmlparse.c
index 47f08099ff..ef1ec022f6 100644
--- a/ext/xml/expat/xmlparse.c
+++ b/ext/xml/expat/xmlparse.c
@@ -4,7 +4,11 @@
#include <stddef.h>
#include <string.h> /* memset(), memcpy() */
-#include <php_config.h>
+#if PHP_WIN32
+#include "config.w32.h"
+#else
+#include "php_config.h"
+#endif
#include "php_compat.h"
#ifdef COMPILED_FROM_DSP