* port-sockets.h: Include sys/filio.h if available
authorKen Raeburn <raeburn@mit.edu>
Thu, 19 Sep 2002 22:39:01 +0000 (22:39 +0000)
committerKen Raeburn <raeburn@mit.edu>
Thu, 19 Sep 2002 22:39:01 +0000 (22:39 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14890 dc483132-0cff-0310-8789-dd5450dbe970

src/include/ChangeLog
src/include/port-sockets.h

index c1c8a865a7f0a95edec658004304320a992a8251..a043700c71caa9bb383743690a22fec68d588759 100644 (file)
@@ -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.
index 4e49b98505f5b5bcaed42fd85f697f0a30dee46d..1b9be3ee1234e0222a417e014ce5364e4df61a3d 100644 (file)
@@ -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...