OSDN Git Service

* dtable.cc: Guard against new winsock.h/winsock2.h warnings when mixing
authorcgf <cgf>
Tue, 20 Mar 2001 19:50:27 +0000 (19:50 +0000)
committercgf <cgf>
Tue, 20 Mar 2001 19:50:27 +0000 (19:50 +0000)
winsock*.h and sys/types.h.
* fhandler_socket.cc: Ditto.
* net.cc: Ditto.
* select.cc: Ditto.
* exceptions.cc: Remove unneeded define.

winsup/cygwin/ChangeLog
winsup/cygwin/dtable.cc
winsup/cygwin/exceptions.cc
winsup/cygwin/fhandler_socket.cc
winsup/cygwin/net.cc
winsup/cygwin/select.cc

index 5ba445c..5b9a5f8 100644 (file)
@@ -1,3 +1,12 @@
+Tue Mar 20 14:48:46 2001  Christopher Faylor <cgf@cygnus.com>
+
+       * dtable.cc: Guard against new winsock.h/winsock2.h warnings when
+       mixing winsock*.h and sys/types.h.
+       * fhandler_socket.cc: Ditto.
+       * net.cc: Ditto.
+       * select.cc: Ditto.
+       * exceptions.cc: Remove unneeded define.
+
 Mon Mar 19 17:43:29 2001  Christopher Faylor <cgf@cygnus.com>
 
        * exceptions.cc (interruptible): Update debugging output.
index f20effc..31cdf4a 100644 (file)
@@ -10,7 +10,6 @@ details. */
 
 #define  __INSIDE_CYGWIN_NET__
 
-#define Win32_Winsock
 #include "winsup.h"
 #include <errno.h>
 #include <sys/socket.h>
@@ -20,6 +19,7 @@ details. */
 #include <fcntl.h>
 #include <sys/cygwin.h>
 
+#define USE_SYS_TYPES_FD_SET
 #include <winsock.h>
 #include "sync.h"
 #include "sigproc.h"
index 0c138ef..8374032 100644 (file)
@@ -8,7 +8,6 @@ This software is a copyrighted work licensed under the terms of the
 Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 details. */
 
-#define Win32_Winsock
 #include "winsup.h"
 #include <imagehlp.h>
 #include <errno.h>
index 5e28eb9..a52d285 100644 (file)
 
 #define  __INSIDE_CYGWIN_NET__
 
-#define Win32_Winsock
 #include "winsup.h"
 #include <errno.h>
 #include <sys/socket.h>
 
 #include <unistd.h>
 #include <fcntl.h>
+#define USE_SYS_TYPES_FD_SET
 #include <winsock2.h>
 #include "cygheap.h"
 #include "cygerrno.h"
index efb3c2c..eaeef5e 100644 (file)
@@ -12,7 +12,6 @@ details. */
 
 #define  __INSIDE_CYGWIN_NET__
 
-#define Win32_Winsock
 #include "winsup.h"
 #include <errno.h>
 #include <sys/socket.h>
@@ -22,6 +21,7 @@ details. */
 #include <unistd.h>
 #include <netdb.h>
 #include <fcntl.h>
+#define USE_SYS_TYPES_FD_SET
 #include <winsock2.h>
 #include "cygheap.h"
 #include "cygerrno.h"
index c427406..683b93a 100644 (file)
@@ -18,7 +18,6 @@ details. */
  */
 
 #define  __INSIDE_CYGWIN_NET__
-#define Win32_Winsock
 
 #include "winsup.h"
 #include <errno.h>
@@ -31,6 +30,7 @@ details. */
 #include <netdb.h>
 #include <unistd.h>
 #include <stdio.h>
+#define USE_SYS_TYPES_FD_SET
 #include <winsock.h>
 #include "select.h"
 #include "cygerrno.h"
@@ -66,7 +66,7 @@ typedef long fd_mask;
 
 #define unix_fd_set fd_set
 
-#define NULL_fd_set ((fd_set *)NULL)
+#define NULL_fd_set ((fd_set *) NULL)
 #define sizeof_fd_set(n) \
   ((unsigned) (NULL_fd_set->fds_bits + unix_howmany((n), UNIX_NFDBITS)))
 #define UNIX_FD_SET(n, p) \