summaryrefslogtreecommitdiff
path: root/Xtrans.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2015-11-28 13:04:21 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2015-12-03 22:59:20 -0800
commitcc29fbc1fe86ae4dfe2f4eaae7352ea86aa4acac (patch)
tree09bb632dbad549a714bdc2d4c21e556ab1b91635 /Xtrans.c
parent3ba0b7a37b9053662ff42f0b4caa856856098475 (diff)
downloadxorg-lib-libxtrans-cc29fbc1fe86ae4dfe2f4eaae7352ea86aa4acac.tar.gz
Remove support for SysV on x86 platforms other than Solaris & SCO
No other x86 SysV platforms have ever been supported in the modular build systems, so we don't need to keep carrying around a bunch of ifdef's for them. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
Diffstat (limited to 'Xtrans.c')
-rw-r--r--Xtrans.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/Xtrans.c b/Xtrans.c
index 19b1828..5d86328 100644
--- a/Xtrans.c
+++ b/Xtrans.c
@@ -1415,7 +1415,7 @@ TRANS(MakeAllCLTSServerListeners) (const char *port, int *partial,
*/
-#if defined(SYSV) && defined(__i386__) && !defined(__SCO__) && !defined(__sun) || defined(WIN32)
+#ifdef WIN32
/*
* emulate readv
@@ -1445,9 +1445,6 @@ static int TRANS(ReadV) (XtransConnInfo ciptr, struct iovec *iov, int iovcnt)
return total;
}
-#endif /* SYSV && __i386__ || WIN32 || __sxg__ */
-
-#if defined(SYSV) && defined(__i386__) && !defined(__SCO__) && !defined(__sun) || defined(WIN32)
/*
* emulate writev
@@ -1477,7 +1474,7 @@ static int TRANS(WriteV) (XtransConnInfo ciptr, struct iovec *iov, int iovcnt)
return total;
}
-#endif /* SYSV && __i386__ || WIN32 || __sxg__ */
+#endif /* WIN32 */
#if defined(_POSIX_SOURCE) || defined(USG) || defined(SVR4) || defined(__SVR4) || defined(__SCO__)