From b0c8a35e2df60e044e297f54e0e304f9daa60adb Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 6 Jun 2010 20:29:42 +0000 Subject: [PATCH] 2010-06-06 22:29 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * external/minizip/ioapi.h ! Fixed for watcom compilers (turned off 64-bit file IO) --- harbour/ChangeLog | 4 ++++ harbour/external/minizip/ioapi.h | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d54d5b63c6..366273ae44 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-06-06 22:29 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * external/minizip/ioapi.h + ! Fixed for watcom compilers (turned off 64-bit file IO) + 2010-06-06 22:06 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * package/mpkg_win.nsi * package/winuni/mpkg_win_uni.nsi diff --git a/harbour/external/minizip/ioapi.h b/harbour/external/minizip/ioapi.h index 36904319eb..ab743a057b 100644 --- a/harbour/external/minizip/ioapi.h +++ b/harbour/external/minizip/ioapi.h @@ -23,7 +23,8 @@ #if !(defined(_WIN32) || defined(WIN32)) && \ !(defined(__MSDOS__) || defined(MSDOS)) && \ - !(defined(OS_2) || defined(__OS2__) || defined(OS2)) + !(defined(OS_2) || defined(__OS2__) || defined(OS2)) && \ + !defined(__WATCOMC__) /* Linux needs this to support file operation on files larger then 4+GB * on 32bit platforms