2006-04-19 Masaki Muranaka <monaka@monami-software.com>
* m32r-rom.c: On MinGW, include winsock.h instead of sys/types.h, netdb.h, netinet/in.h. (m32r_upload_command); Add calls WSAStartup(). * remote-m32r-sdi.c: On MinGW, include winsock.h instead of netinet/in.h.
This commit is contained in:
parent
7c6646cd4b
commit
cbba9205ad
3 changed files with 23 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-04-19 Masaki Muranaka <monaka@monami-software.com>
|
||||
|
||||
* m32r-rom.c: On MinGW, include winsock.h instead of sys/types.h,
|
||||
netdb.h, netinet/in.h.
|
||||
(m32r_upload_command); Add calls WSAStartup().
|
||||
* remote-m32r-sdi.c: On MinGW, include winsock.h instead of
|
||||
netinet/in.h.
|
||||
|
||||
2006-04-18 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* breakpoint.c (deprecated_read_memory_nobpt): Update to use
|
||||
|
|
|
@ -46,12 +46,16 @@
|
|||
/*
|
||||
* All this stuff just to get my host computer's IP address!
|
||||
*/
|
||||
#ifdef __MINGW32__
|
||||
#include <winsock.h>
|
||||
#else
|
||||
#include <sys/types.h>
|
||||
#include <netdb.h> /* for hostent */
|
||||
#include <netinet/in.h> /* for struct in_addr */
|
||||
#if 1
|
||||
#include <arpa/inet.h> /* for inet_ntoa */
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static char *board_addr; /* user-settable IP address for M32R-EVA */
|
||||
static char *server_addr; /* user-settable IP address for gdb host */
|
||||
|
@ -435,6 +439,13 @@ m32r_upload_command (char *args, int from_tty)
|
|||
}
|
||||
if (server_addr == 0)
|
||||
{
|
||||
#ifdef __MINGW32__
|
||||
WSADATA wd;
|
||||
/* Winsock initialization. */
|
||||
if (WSAStartup (MAKEWORD (1, 1), &wd))
|
||||
error (_("Couldn't initialize WINSOCK."));
|
||||
#endif
|
||||
|
||||
buf[0] = 0;
|
||||
gethostname (buf, sizeof (buf));
|
||||
if (buf[0] != 0)
|
||||
|
|
|
@ -31,7 +31,11 @@
|
|||
#include "gdb_string.h"
|
||||
#include <ctype.h>
|
||||
#include <signal.h>
|
||||
#ifdef __MINGW32__
|
||||
#include <winsock.h>
|
||||
#else
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
#include <signal.h>
|
||||
|
|
Loading…
Reference in a new issue