Commit b333fbf968418bcf45d4de174d86a79b3c70b509

Sven Strickroth 2012-04-20T18:51:10

WIN32 is not always defined, use GIT_WIN32 instead Signed-off-by: Sven Strickroth <email@cs-ware.de>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/xdiff/xinclude.h b/src/xdiff/xinclude.h
index 2928d32..7d7b77b 100644
--- a/src/xdiff/xinclude.h
+++ b/src/xdiff/xinclude.h
@@ -29,7 +29,7 @@
 #include <string.h>
 #include <limits.h>
 
-#ifdef WIN32
+#ifdef GIT_WIN32
 #else
 #include <unistd.h>
 #endif