fixed mingw compilation
diff --git a/ChangeLog b/ChangeLog
index ecc1a8b..f1acd23 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Apr  6 22:42:23 CEST 2005 Igor Zlatkovic <igor@zlatkovic.com>
+
+	* win32/Makefile.mingw: fixed mingw compilation
+	* testModule.c: removed mingw warnings
+
 Wed Apr  6 21:59:11 CEST 2005 Igor Zlatkovic <igor@zlatkovic.com>
 
 	* .cvsignore: added Eclipse project files to ignore list
diff --git a/testModule.c b/testModule.c
index f245829..fecc852 100644
--- a/testModule.c
+++ b/testModule.c
@@ -22,7 +22,9 @@
 #ifdef _WIN32
 #define MODULE_PATH "."
 #include <stdlib.h> /* for _MAX_PATH */
+#ifndef __MINGW32__
 #define PATH_MAX _MAX_PATH
+#endif
 #else
 #define MODULE_PATH ".libs"
 #endif
diff --git a/win32/Makefile.mingw b/win32/Makefile.mingw
index a96c228..8de1ae9 100644
--- a/win32/Makefile.mingw
+++ b/win32/Makefile.mingw
@@ -136,7 +136,7 @@
 	$(XML_INTDIR)/xmlmemory.o\
 	$(XML_INTDIR)/xmlreader.o\
 	$(XML_INTDIR)/xmlregexp.o\
-	$(XML_INTDIR)\xmlmodule.o\
+	$(XML_INTDIR)/xmlmodule.o\
 	$(XML_INTDIR)/xmlsave.o\
 	$(XML_INTDIR)/xmlschemas.o\
 	$(XML_INTDIR)/xmlschemastypes.o\
@@ -182,7 +182,7 @@
 	$(XML_INTDIR_A)/xmlmemory.o\
 	$(XML_INTDIR_A)/xmlreader.o\
 	$(XML_INTDIR_A)/xmlregexp.o\
-	$(XML_INTDIR_A)\xmlmodule.o\
+	$(XML_INTDIR_A)/xmlmodule.o\
 	$(XML_INTDIR_A)/xmlsave.o\
 	$(XML_INTDIR_A)/xmlschemas.o\
 	$(XML_INTDIR_A)/xmlschemastypes.o\