diff options
author | dawes <dawes> | 1994-05-22 00:07:50 +0000 |
---|---|---|
committer | dawes <dawes> | 1994-05-22 00:07:50 +0000 |
commit | de040db5a72932d3fb6ce4f488fe051a23a8f3da (patch) | |
tree | 41390ba4d8d400c479e664c6455f04308f976b05 | |
parent | 95513fccfdbcb3d167ba1560c9d6acb30d217efc (diff) |
SCO support
-rw-r--r-- | workInProgress/lbx/programs/lbxproxy/os/connection.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/workInProgress/lbx/programs/lbxproxy/os/connection.c b/workInProgress/lbx/programs/lbxproxy/os/connection.c index c17febf58..9495b1a94 100644 --- a/workInProgress/lbx/programs/lbxproxy/os/connection.c +++ b/workInProgress/lbx/programs/lbxproxy/os/connection.c @@ -1,4 +1,5 @@ /* $XConsortium: connection.c,v 1.6 94/04/17 21:17:12 dpw Exp $ */ +/* $XFree86$ */ /*********************************************************** Copyright (c) 1987, 1989 X Consortium @@ -1647,7 +1648,7 @@ EstablishNewConnections(clientUnused, closure) } #endif /* TCP_NODELAY */ /* ultrix reads hang on Unix sockets, hpux reads fail, AIX fails too */ -#if defined(O_NONBLOCK) && (!defined(ultrix) && !defined(hpux) && !defined(AIXV3) && !defined(uniosu)) +#if defined(O_NONBLOCK) && (!defined(ultrix) && !defined(hpux) && !defined(AIXV3) && !defined(uniosu) && !defined(SCO)) (void) fcntl (newconn, F_SETFL, O_NONBLOCK); #else #ifdef FIOSNBIO |