summaryrefslogtreecommitdiff
path: root/Xtransint.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2006-08-22 11:29:46 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2006-08-22 11:29:46 -0700
commite11b861fcf3a295e5cb390cbac3a44d8ce4fad4f (patch)
tree02cf0d4fcff52a4df5fcb365d1acc0aa21c3afe9 /Xtransint.h
parent049932c0171855aa6d55222947f4d47495b6f173 (diff)
downloadxorg-lib-libxtrans-e11b861fcf3a295e5cb390cbac3a44d8ce4fad4f.tar.gz
Merge more fixes from Solaris xtrans
Convert sprintf -> snprintf Don't use fake readv/writev on Solaris x86.
Diffstat (limited to 'Xtransint.h')
-rw-r--r--Xtransint.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xtransint.h b/Xtransint.h
index 43d6da8..663c689 100644
--- a/Xtransint.h
+++ b/Xtransint.h
@@ -383,7 +383,7 @@ typedef struct _Xtransport_table {
* systems, so they may be emulated.
*/
-#if defined(CRAY) || (defined(SYSV) && defined(i386) && !defined(__SCO__)) || defined(WIN32) || defined(__sxg__) || defined(__UNIXOS2__)
+#if defined(CRAY) || (defined(SYSV) && defined(i386) && !defined(__SCO__) && !defined(sun)) || defined(WIN32) || defined(__sxg__) || defined(__UNIXOS2__)
#define READV(ciptr, iov, iovcnt) TRANS(ReadV)(ciptr, iov, iovcnt)
@@ -400,7 +400,7 @@ static int TRANS(ReadV)(
#endif /* CRAY || (SYSV && i386) || WIN32 || __sxg__ || */
-#if defined(CRAY) || (defined(SYSV) && defined(i386) && !defined(__SCO__)) || defined(WIN32) || defined(__sxg__) || defined(__UNIXOS2__)
+#if defined(CRAY) || (defined(SYSV) && defined(i386) && !defined(__SCO__) && !defined(sun)) || defined(WIN32) || defined(__sxg__) || defined(__UNIXOS2__)
#define WRITEV(ciptr, iov, iovcnt) TRANS(WriteV)(ciptr, iov, iovcnt)