diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-07-06 20:28:09 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-07-06 20:28:09 +0000 |
commit | f8a47462082a30fc78fc6480833de4c074b4b7dc (patch) | |
tree | 09343e1d03fb22f7f59ba2078affd8e807cfd615 /src/include/port/hpux.h | |
parent | 824c6865fa5bee511d50a8b90b41d0a4a3be2b3c (diff) |
Patches HPUX applied for Tom Lane.
Diffstat (limited to 'src/include/port/hpux.h')
-rw-r--r-- | src/include/port/hpux.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/port/hpux.h b/src/include/port/hpux.h index b78b43fbf85..d1a6451836f 100644 --- a/src/include/port/hpux.h +++ b/src/include/port/hpux.h @@ -1,6 +1,11 @@ #define JMP_BUF #define USE_POSIX_TIME +/* HPUX 10 has full POSIX signal functionality. + * On HPUX 9, we rely on BSD-compatible signal() in libBSD. + */ +#ifdef HPUX_10 #define USE_POSIX_SIGNALS +#endif #define HAS_TEST_AND_SET typedef struct { |