[GB.COMPRESS.ZLIB]

* BUG: Fix compilation warning about _LARGEFILE64_SOURCE redefinition.


git-svn-id: svn://localhost/gambas/trunk@2969 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Laurent Carlier 2010-05-26 20:04:32 +00:00
parent 3b2f4ce2ae
commit 09ed25e356

View file

@ -25,7 +25,7 @@
#include "gb_common.h" #include "gb_common.h"
// Use 64 bits I/O // Use 64 bits I/O
#if __WORDSIZE == 64 #if (__WORDSIZE == 64) && (!_LARGEFILE64_SOURCE)
#define _LARGEFILE64_SOURCE #define _LARGEFILE64_SOURCE
#endif #endif