aix.h 371 B

1234567891011121314
  1. /*
  2. * src/include/port/aix.h
  3. */
  4. #define CLASS_CONFLICT
  5. #define DISABLE_XOPEN_NLS
  6. /*
  7. * "IBM XL C/C++ for AIX, V12.1" miscompiles, for 32-bit, some inline
  8. * expansions of ginCompareItemPointers() "long long" arithmetic. To take
  9. * advantage of inlining, build a 64-bit PostgreSQL.
  10. */
  11. #if defined(__ILP32__) && defined(__IBMC__)
  12. #define PG_FORCE_DISABLE_INLINE
  13. #endif