2010-04-11 13:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbmzip/minizip.dif
  * contrib/hbmzip/ioapi.h
    + Enabled 64-bit file operations for open watcom 1.9.
      (no go, reverted)
This commit is contained in:
Viktor Szakats
2010-04-11 11:50:46 +00:00
parent ce594e2aa4
commit fa27151b26
3 changed files with 9 additions and 3 deletions

View File

@@ -17,6 +17,12 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-04-11 13:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbmzip/minizip.dif
* contrib/hbmzip/ioapi.h
+ Enabled 64-bit file operations for open watcom 1.9.
(no go, reverted)
2010-04-11 13:35 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbmzip/minizip.dif
* contrib/hbmzip/ioapi.h

View File

@@ -45,7 +45,7 @@
#include "zlib.h"
#if defined( __BORLANDC__ ) || \
( defined( __WATCOMC__ ) && __WATCOMC__ < 1290 ) || \
defined( __WATCOMC__ ) || \
defined( __MINGW32CE__ )
# define USE_FILE32API
#endif

View File

@@ -145,13 +145,13 @@ diff -u ori\ioapi.c .\ioapi.c
pzlib_filefunc_def->zread_file = fread_file_func;
diff -u ori\ioapi.h .\ioapi.h
--- ori\ioapi.h Mon Feb 15 05:59:40 2010
+++ .\ioapi.h Sun Apr 11 13:33:50 2010
+++ .\ioapi.h Sun Apr 11 13:49:40 2010
@@ -44,6 +44,12 @@
#include <stdlib.h>
#include "zlib.h"
+#if defined( __BORLANDC__ ) || \
+ ( defined( __WATCOMC__ ) && __WATCOMC__ < 1290 ) || \
+ defined( __WATCOMC__ ) || \
+ defined( __MINGW32CE__ )
+# define USE_FILE32API
+#endif