diff options
author | Mike Pall <mike> | 2013-12-21 16:49:10 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2013-12-21 16:49:10 +0100 |
commit | 279673ddfcff8e82cac0704d371ed405ad7a229b (patch) | |
tree | b55aa7589656845d7d01a4e9f34be0e77cd24618 /src/luaconf.h | |
parent | 0ded8e82a88fadb40b4dd7e6632311781f1b2f91 (diff) | |
download | luajit-279673ddfcff8e82cac0704d371ed405ad7a229b.tar.gz luajit-279673ddfcff8e82cac0704d371ed405ad7a229b.tar.bz2 luajit-279673ddfcff8e82cac0704d371ed405ad7a229b.zip |
Fix MinGW build.
Diffstat (limited to 'src/luaconf.h')
-rw-r--r-- | src/luaconf.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/luaconf.h b/src/luaconf.h index 224bfada..a0fe77bd 100644 --- a/src/luaconf.h +++ b/src/luaconf.h | |||
@@ -6,6 +6,9 @@ | |||
6 | #ifndef luaconf_h | 6 | #ifndef luaconf_h |
7 | #define luaconf_h | 7 | #define luaconf_h |
8 | 8 | ||
9 | #ifndef WINVER | ||
10 | #define WINVER 0x0501 | ||
11 | #endif | ||
9 | #include <limits.h> | 12 | #include <limits.h> |
10 | #include <stddef.h> | 13 | #include <stddef.h> |
11 | 14 | ||