[cfe-commits] r43029 - /cfe/trunk/Basic/SourceManager.cpp

Anton Korobeynikov asl at math.spbu.ru
Tue Oct 16 02:09:44 PDT 2007


Author: asl
Date: Tue Oct 16 04:09:44 2007
New Revision: 43029

URL: http://llvm.org/viewvc/llvm-project?rev=43029&view=rev
Log:
Unbreak mingw32. Maybe there should be something like libClandSystem? :)

Modified:
    cfe/trunk/Basic/SourceManager.cpp

Modified: cfe/trunk/Basic/SourceManager.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Basic/SourceManager.cpp?rev=43029&r1=43028&r2=43029&view=diff

==============================================================================
--- cfe/trunk/Basic/SourceManager.cpp (original)
+++ cfe/trunk/Basic/SourceManager.cpp Tue Oct 16 04:09:44 2007
@@ -42,7 +42,7 @@
 // FIXME: REMOVE THESE
 #include <unistd.h>
 #include <sys/types.h>
-#if !defined(_MSC_VER)
+#if !defined(_MSC_VER) && !defined(__MINGW32__)
 #include <sys/uio.h>
 #include <sys/fcntl.h>
 #else





More information about the cfe-commits mailing list