Commit d525ab81 authored by Peter Eisentraut's avatar Peter Eisentraut

Workaround for broken large file support on HP-UX

parent f81ce4a0
......@@ -15,5 +15,9 @@ typedef struct
#endif
#ifndef BYTE_ORDER
#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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment