fix mingw64 compilation warnings
authorinikep <inikep@gmail.com>
Fri, 2 Sep 2016 19:50:57 +0000 (21:50 +0200)
committerinikep <inikep@gmail.com>
Fri, 2 Sep 2016 19:50:57 +0000 (21:50 +0200)
.gitignore
programs/bench.c
programs/lz4cli.c
programs/lz4io.c

index a715f8a..d1ce131 100644 (file)
@@ -21,3 +21,6 @@ lz4
 # Visual solution files
 *.suo
 *.user
+
+# Directories
+_codelite/
index f09c912..b03d562 100644 (file)
 #  define _LARGEFILE64_SOURCE
 #endif
 
+#if defined(__MINGW32__) && !defined(_POSIX_SOURCE)
+#  define _POSIX_SOURCE 1          /* disable %llu warnings with MinGW on Windows */
+#endif
+
 
 /*-************************************
 *  Includes
index 12d48d1..59312a0 100644 (file)
@@ -88,7 +88,7 @@
 ******************************/
 #define COMPRESSOR_NAME "LZ4 command line interface"
 #ifndef LZ4_VERSION
-#  define LZ4_VERSION "r128"
+#  define LZ4_VERSION "r132"
 #endif
 #define AUTHOR "Yann Collet"
 #define WELCOME_MESSAGE "*** %s %i-bits %s, by %s (%s) ***\n", COMPRESSOR_NAME, (int)(sizeof(void*)*8), LZ4_VERSION, AUTHOR, __DATE__
index e4823dc..bc1213a 100644 (file)
@@ -42,6 +42,9 @@
 #define _LARGE_FILES           /* Large file support on 32-bits AIX */
 #define _FILE_OFFSET_BITS 64   /* Large file support on 32-bits unix */
 
+#if defined(__MINGW32__) && !defined(_POSIX_SOURCE)
+#  define _POSIX_SOURCE 1          /* disable %llu warnings with MinGW on Windows */
+#endif
 
 /*****************************
 *  Includes