Workaround for broken large file support on HP-UX

REL7_3_STABLE
Peter Eisentraut 23 years ago
parent f81ce4a0f6
commit d525ab81c3
  1. 4
      src/include/port/hpux.h

@ -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

Loading…
Cancel
Save