* configure.ac: Use `ws2_32' library for srv_mingw.
authorPierre Muller <muller@sourceware.org>
Sat, 17 Apr 2010 20:43:13 +0000 (20:43 +0000)
committerPierre Muller <muller@sourceware.org>
Sat, 17 Apr 2010 20:43:13 +0000 (20:43 +0000)
* configure: Regenerate.
* gdbreplay.c: Include winsock2.h instead of winsock.h.
* remote-utils.c: Likewise.

gdb/gdbserver/ChangeLog
gdb/gdbserver/configure
gdb/gdbserver/configure.ac
gdb/gdbserver/gdbreplay.c
gdb/gdbserver/remote-utils.c

index 49e6bb6..842f2fa 100644 (file)
@@ -1,3 +1,10 @@
+2010-04-17  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * configure.ac: Use `ws2_32' library for srv_mingw.
+       * configure: Regenerate.
+       * gdbreplay.c: Include winsock2.h instead of winsock.h.
+       * remote-utils.c: Likewise.
+
 2010-04-17  H.J. Lu  <hongjiu.lu@intel.com>
 
        * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
index dba6a91..8db8861 100755 (executable)
@@ -4056,7 +4056,7 @@ esac
 if test "${srv_mingwce}" = "yes"; then
   LIBS="$LIBS -lws2"
 elif test "${srv_mingw}" = "yes"; then
-  LIBS="$LIBS -lwsock32"
+  LIBS="$LIBS -lws2_32"
 elif test "${srv_qnx}" = "yes"; then
   LIBS="$LIBS -lsocket"
 fi
index f862918..a2dfa37 100644 (file)
@@ -118,7 +118,7 @@ esac
 if test "${srv_mingwce}" = "yes"; then
   LIBS="$LIBS -lws2"
 elif test "${srv_mingw}" = "yes"; then
-  LIBS="$LIBS -lwsock32"
+  LIBS="$LIBS -lws2_32"
 elif test "${srv_qnx}" = "yes"; then
   LIBS="$LIBS -lsocket"
 fi
index 6ce00b3..a128413 100644 (file)
@@ -59,7 +59,7 @@
 #endif
 
 #if USE_WIN32API
-#include <winsock.h>
+#include <winsock2.h>
 #endif
 
 #ifndef HAVE_SOCKLEN_T
index 6a93c3a..ae04d13 100644 (file)
@@ -63,7 +63,7 @@
 #endif
 
 #if USE_WIN32API
-#include <winsock.h>
+#include <winsock2.h>
 #endif
 
 #if __QNX__