2010-04-22 19:40 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* external/minizip/ioapi.h
    ! Added darwin-specific workaround to disable 64-bit
      file API calls (like fopen64()). These don't exist on darwin.
This commit is contained in:
Viktor Szakats
2010-04-22 17:40:41 +00:00
parent 0fbe571ed1
commit 9e62d217a0
2 changed files with 9 additions and 1 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-04-22 19:40 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* external/minizip/ioapi.h
! Added darwin-specific workaround to disable 64-bit
file API calls (like fopen64()). These don't exist on darwin.
2010-04-22 18:41 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/postinst.prg
! Added hack to workaround the exception where mysql .dll doesn't

View File

@@ -41,9 +41,12 @@
#include <stdlib.h>
#include "zlib.h"
#include "hbsetup.h"
#if defined( __BORLANDC__ ) || \
defined( __WATCOMC__ ) || \
defined( __MINGW32CE__ )
defined( __MINGW32CE__ ) || \
defined( HB_OS_DARWIN )
# define USE_FILE32API
#endif