X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=windows%2Fconfig-compiler.h;h=806f9a437b27e19f660106a279f0551243484b35;hp=69e43562cb8d6e4bc07604fafb776a2e1b3b6001;hb=5dac640941ba6ea32b91673b65bee6fcab266a6b;hpb=ff751683a251e83aceb7dbbf409a58359e153f2e diff --git a/windows/config-compiler.h b/windows/config-compiler.h index 69e43562..806f9a43 100644 --- a/windows/config-compiler.h +++ b/windows/config-compiler.h @@ -46,6 +46,8 @@ so, delete this exception statement from your version. */ /* -------------------- */ #if defined __GNUC__ +#define OS_TYPE "Windows-MinGW" + #define LL(n) n##LL /* Transparently support statting large files, like POSIX's LFS API @@ -80,6 +82,8 @@ so, delete this exception statement from your version. */ /* -------------------- */ #elif defined _MSC_VER +#define OS_TYPE "Windows-MSVC" + #define LL(n) n##I64 #define stat(fname, buf) _stati64 (fname, buf) @@ -93,6 +97,8 @@ so, delete this exception statement from your version. */ /* ------------------ */ #elif defined __BORLANDC__ +#define OS_TYPE "Windows-Borland" + #define LL(n) n##I64 #define stat(fname, buf) _stati64 (fname, buf) #define struct_stat struct stati64 @@ -103,6 +109,8 @@ so, delete this exception statement from your version. */ /* ------------------------------ */ #elif defined __DMC__ +#define OS_TYPE "Windows-DMC" + #define LL(n) n##LL #undef stat #undef struct_stat