diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-10-11 11:26:04 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-10-11 11:26:04 -0400 |
commit | 2b860f52ed1b1784cdf3f03886805f5bf250ea74 (patch) | |
tree | 4aa437fa6abe5d253038305c5670cb29281da1b0 /src/backend/libpq/pqcomm.c | |
parent | c7e56811fa38cbc39efd6bdd4bb45f2f0444803e (diff) | |
download | postgresql-2b860f52ed1b1784cdf3f03886805f5bf250ea74.tar.gz postgresql-2b860f52ed1b1784cdf3f03886805f5bf250ea74.zip |
Remove "sco" and "unixware" ports.
SCO OpenServer and SCO UnixWare are more or less dead platforms.
We have never had a buildfarm member testing the "sco" port, and
the last "unixware" member was last heard from in 2012, so it's
fair to doubt that the code even compiles anymore on either one.
Remove both ports. We can always undo this if someone shows up
with an interest in maintaining and testing these platforms.
Discussion: <17177.1476136994@sss.pgh.pa.us>
Diffstat (limited to 'src/backend/libpq/pqcomm.c')
-rw-r--r-- | src/backend/libpq/pqcomm.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c index bae96bf18fb..affa9bb7ab8 100644 --- a/src/backend/libpq/pqcomm.c +++ b/src/backend/libpq/pqcomm.c @@ -683,16 +683,6 @@ StreamConnection(pgsocket server_fd, Port *port) return STATUS_ERROR; } -#ifdef SCO_ACCEPT_BUG - - /* - * UnixWare 7+ and OpenServer 5.0.4 are known to have this bug, but it - * shouldn't hurt to catch it for all versions of those platforms. - */ - if (port->raddr.addr.ss_family == 0) - port->raddr.addr.ss_family = AF_UNIX; -#endif - /* fill in the server (local) address */ port->laddr.salen = sizeof(port->laddr.addr); if (getsockname(port->sock, |