- fix for PIs name starting with xml
 - fixed a potential problem with || and && ops
 - generate win32config.h for those on the Other Side !
Daniel
diff --git a/nanohttp.c b/nanohttp.c
index 0445c9c..8224d49 100644
--- a/nanohttp.c
+++ b/nanohttp.c
@@ -14,10 +14,13 @@
 /* TODO add compression support, Send the Accept- , and decompress on the
         fly with ZLIB if found at compile-time */
 
-#ifndef WIN32
+#ifdef WIN32
+#include "win32config.h"
+#else
 #include "config.h"
 #endif
 
+
 #include <stdio.h>
 #include <string.h>