remove IRIX support (closes bpo-31341) (#3310)

See PEP 11.
This commit is contained in:
Benjamin Peterson 2017-09-04 16:36:05 -07:00 committed by GitHub
parent e1b0287c04
commit 069306312a
16 changed files with 36 additions and 115 deletions

View file

@ -268,10 +268,8 @@ http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libc/net/getaddrinfo.c.diff?r1=1.82&
#include <netdb.h>
#endif
/* Irix 6.5 fails to define this variable at all. This is needed
for both GCC and SGI's compiler. I'd say that the SGI headers
are just busted. Same thing for Solaris. */
#if (defined(__sgi) || defined(sun)) && !defined(INET_ADDRSTRLEN)
/* Solaris fails to define this variable at all. */
#if defined(sun) && !defined(INET_ADDRSTRLEN)
#define INET_ADDRSTRLEN 16
#endif