Andrés García's patch to prevent warnings while compiling with mingw, mainly
authorDaniel Stenberg <daniel@haxx.se>
Thu, 4 Mar 2004 15:32:18 +0000 (15:32 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 4 Mar 2004 15:32:18 +0000 (15:32 +0000)
because it is now possible to have both WIN32 and HAVE_CONFIG_H defined.

lib/connect.c
lib/setup.h

index 97d5d34..3de043b 100644 (file)
@@ -68,7 +68,6 @@
 #endif
 
 #ifdef WIN32
-#define HAVE_IOCTLSOCKET
 #include <windows.h>
 #define EINPROGRESS WSAEINPROGRESS
 #define EWOULDBLOCK WSAEWOULDBLOCK
index ebab136..dfe412b 100644 (file)
 
 #ifdef HAVE_CONFIG_H
 #include "config.h" /* the configure script results */
+#else
+#ifdef WIN32
+/* hand-modified win32 config.h! */
+#include "config-win32.h"
+#endif
 #endif
 
 #ifdef VMS
 /* hand-modified VMS config.h! */
 #include "config-vms.h"
 #endif
-#ifdef WIN32
-/* hand-modified win32 config.h! */
-#include "config-win32.h"
-#endif
 #ifdef macintosh
 /* hand-modified MacOS config.h! */
 #include "config-mac.h"