diff options
author | Ken Raeburn <raeburn@mit.edu> | 2002-09-19 22:39:01 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2002-09-19 22:39:01 +0000 |
commit | 98e81617d4084a12fb2eefeb45c79265213548eb (patch) | |
tree | cdd9e9c77fe490670954401915a1b870e340bf2d /src/include | |
parent | 98eb17c7805dfb6498c5746c961f303e6be427ff (diff) | |
download | krb5-98e81617d4084a12fb2eefeb45c79265213548eb.tar.gz krb5-98e81617d4084a12fb2eefeb45c79265213548eb.tar.xz krb5-98e81617d4084a12fb2eefeb45c79265213548eb.zip |
* port-sockets.h: Include sys/filio.h if available
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14890 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ChangeLog | 4 | ||||
-rw-r--r-- | src/include/port-sockets.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog index c1c8a865a..a043700c7 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,7 @@ +2002-09-19 Ken Raeburn <raeburn@mit.edu> + + * port-sockets.h: Include sys/filio.h if available. + 2002-09-18 Ken Raeburn <raeburn@mit.edu> * configure.in: Check for sys/filio.h. diff --git a/src/include/port-sockets.h b/src/include/port-sockets.h index 4e49b9850..1b9be3ee1 100644 --- a/src/include/port-sockets.h +++ b/src/include/port-sockets.h @@ -84,6 +84,9 @@ typedef WSABUF sg_buf; #ifdef HAVE_SYS_UIO_H #include <sys/uio.h> /* For struct iovec, for sg_buf */ #endif +#ifdef HAVE_SYS_FILIO_H +#include <sys/filio.h> /* For FIONBIO on Solaris. */ +#endif /* * Compatability with WinSock calls on MS-Windows... |