Skip to content
Snippets Groups Projects
Commit d525ab81 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Workaround for broken large file support on HP-UX

parent f81ce4a0
No related branches found
No related tags found
No related merge requests found
...@@ -15,5 +15,9 @@ typedef struct ...@@ -15,5 +15,9 @@ typedef struct
#endif #endif
#ifndef BYTE_ORDER #ifndef BYTE_ORDER
#define BYTE_ORDER BIG_ENDIAN #define BYTE_ORDER BIG_ENDIAN
#endif
/* workaround for nonstandard large file support implementation */
#if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64
#define _LARGEFILE64_SOURCE 1
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment