2014-05-29 00:34 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* contrib/hbmzip/mzip.c
    ! disable _LARGEFILE64_SOURCE after including system header files in
      non *nix builds just before including zlib headers.
      It's workaround for wrong condition in zconf.h
This commit is contained in:
Przemysław Czerpak
2014-05-29 00:34:16 +02:00
parent 786ba57352
commit 5ce475d274
2 changed files with 11 additions and 0 deletions

View File

@@ -10,6 +10,12 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2014-05-29 00:34 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbmzip/mzip.c
! disable _LARGEFILE64_SOURCE after including system header files in
non *nix builds just before including zlib headers.
It's workaround for wrong condition in zconf.h
2014-05-26 16:15 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/common/hbfsapi.c
* src/rtl/filesys.c

View File

@@ -58,6 +58,11 @@
#include "hbapistr.h"
#include "hbdate.h"
#include "hbset.h"
#if defined( HB_OS_UNIX )
# undef _LARGEFILE64_SOURCE
#endif
#include "zip.h"
#include "unzip.h"