and _WIN32 is not defined.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14494
dc483132-0cff-0310-8789-
dd5450dbe970
+2002-06-11 Ken Raeburn <raeburn@mit.edu>
+
+ * sendto_kdc.c: Include sys/ioctl.h and sys/filio.h only if
+ ENABLE_TCP is set and _WIN32 is not defined.
+
2002-06-10 Ken Raeburn <raeburn@mit.edu>
* sendto_kdc.c: Include sys/ioctl.h and sys/filio.h if
#include <sys/select.h>
#endif
+#ifdef _WIN32
+#define ENABLE_TCP 0 /* for now */
+#else
+#define ENABLE_TCP 1
+#endif
+
+#if defined(ENABLE_TCP) && !defined(_WIN32)
/* For FIONBIO. */
#include <sys/ioctl.h>
#ifdef HAVE_SYS_FILIO_H
#include <sys/filio.h>
#endif
-
-#ifdef _WIN32
-#define ENABLE_TCP 0 /* for now */
-#else
-#define ENABLE_TCP 1
#endif
/*