summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ChangeLog4
-rw-r--r--src/include/port-sockets.h3
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...