mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Workaround for broken large file support on HP-UX
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user