diff options
author | rootavish <[email protected]> | 2014-08-12 06:56:32 +0530 |
---|---|---|
committer | rootavish <[email protected]> | 2014-08-12 06:56:32 +0530 |
commit | 717fe22563cbeac45afd878be3a09bb3537addfc (patch) | |
tree | 6eb197de305b77ccaa6770a4e3cc1c286f752770 | |
parent | 020b11e5f204453614c7c45287d9b39c376d1e4a (diff) | |
download | atril-717fe22563cbeac45afd878be3a09bb3537addfc.tar.bz2 atril-717fe22563cbeac45afd878be3a09bb3537addfc.tar.xz |
Modified ioapi.h for missing macro
-rw-r--r-- | backend/epub/minizip/ioapi.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/backend/epub/minizip/ioapi.h b/backend/epub/minizip/ioapi.h index 8dcbdb06..9c137e83 100644 --- a/backend/epub/minizip/ioapi.h +++ b/backend/epub/minizip/ioapi.h @@ -19,7 +19,7 @@ */ #ifndef _ZLIBIOAPI64_H -#define _ZLIBIOAPI64_H +#define _ZLIBIOAPI64_H #if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__)) @@ -102,7 +102,9 @@ typedef unsigned long long int ZPOS64_T; #endif #endif - +#ifndef OF +#define OF _Z_OF +#endif #ifdef __cplusplus extern "C" { |