diff options
author | Andres Freund <andres@anarazel.de> | 2014-06-28 21:40:40 +0200 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2014-06-28 21:46:15 +0200 |
commit | a6d488cb538c8761658f0f7edfc40cecc8c29f2d (patch) | |
tree | 4c4850de88cb668fe883b14dde4715df9fca2b5f /src/backend/utils/misc/ps_status.c | |
parent | d222585a9f7a18f2d793785c82be4c877b90c461 (diff) | |
download | postgresql-a6d488cb538c8761658f0f7edfc40cecc8c29f2d.tar.gz postgresql-a6d488cb538c8761658f0f7edfc40cecc8c29f2d.zip |
Remove Alpha and Tru64 support.
Support for running postgres on Alpha hasn't been tested for a long
while. Due to Alpha's uniquely lax cache coherency model it's a hard
to develop for platform (especially blindly!) and thought to be
unlikely to currently work correctly.
As Alpha is the only supported architecture for Tru64 drop support for
it as well. Tru64's support has ended 2012 and it has been in
maintenance-only mode for much longer.
Also remove stray references to __ksr__ and ultrix defines.
Diffstat (limited to 'src/backend/utils/misc/ps_status.c')
-rw-r--r-- | src/backend/utils/misc/ps_status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/ps_status.c b/src/backend/utils/misc/ps_status.c index 3aeceae67c3..5407d3f9ace 100644 --- a/src/backend/utils/misc/ps_status.c +++ b/src/backend/utils/misc/ps_status.c @@ -66,7 +66,7 @@ bool update_process_title = true; #define PS_USE_PS_STRINGS #elif (defined(BSD) || defined(__hurd__)) && !defined(__darwin__) #define PS_USE_CHANGE_ARGV -#elif defined(__linux__) || defined(_AIX) || defined(__sgi) || (defined(sun) && !defined(BSD)) || defined(ultrix) || defined(__ksr__) || defined(__osf__) || defined(__svr5__) || defined(__darwin__) +#elif defined(__linux__) || defined(_AIX) || defined(__sgi) || (defined(sun) && !defined(BSD)) || defined(__svr5__) || defined(__darwin__) #define PS_USE_CLOBBER_ARGV #elif defined(WIN32) #define PS_USE_WIN32 |