diff options
author | DJ Delorie <dj@redhat.com> | 2009-08-14 04:24:30 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-08-14 04:24:30 +0000 |
commit | 340cf1cfb699a8b49b8a93967a3ac5c23dd00453 (patch) | |
tree | c6c9d6571ec7afca88c7c2fd07f51a0877fef243 /sim/m32c/config.in | |
parent | a109e2f5583d186cb85203cf65900b6dd138993d (diff) | |
download | gdb-340cf1cfb699a8b49b8a93967a3ac5c23dd00453.zip gdb-340cf1cfb699a8b49b8a93967a3ac5c23dd00453.tar.gz gdb-340cf1cfb699a8b49b8a93967a3ac5c23dd00453.tar.bz2 |
* configure.in: Check for sys/select.h, termios.h, sys/socket.h,
netinet/in.h, and netinet/tcp.h.
* configure: Regenerate.
* config.in: Add those headers.
* main.c: Check for them.
(setup_tcp_console): Disable if no networking.
(main): Note missing networking or termios.
* mem.c: Check for those headers.
(stdin_ready): Disable if no termios.
(m32c_sim_restore_console): Disable if no termios.
(mem_get_byte): Disable console input if no termios.
Diffstat (limited to 'sim/m32c/config.in')
-rw-r--r-- | sim/m32c/config.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sim/m32c/config.in b/sim/m32c/config.in index 5e29f95..0cde41f 100644 --- a/sim/m32c/config.in +++ b/sim/m32c/config.in @@ -22,6 +22,12 @@ /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H +/* Define to 1 if you have the <netinet/in.h> header file. */ +#undef HAVE_NETINET_IN_H + +/* Define to 1 if you have the <netinet/tcp.h> header file. */ +#undef HAVE_NETINET_TCP_H + /* Define to 1 if you have the `nsl' library (-lnsl). */ #undef HAVE_LIBNSL @@ -49,15 +55,24 @@ /* Define to 1 if you have the <sys/resource.h> header file. */ #undef HAVE_SYS_RESOURCE_H +/* Define to 1 if you have the <sys/select.h> header file. */ +#undef HAVE_SYS_SELECT_H + /* Define to 1 if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H +/* Define to 1 if you have the <sys/socket.h> header file. */ +#undef HAVE_SYS_SOCKET_H + /* Define to 1 if you have the <sys/time.h> header file. */ #undef HAVE_SYS_TIME_H /* Define to 1 if you have the <sys/types.h> header file. */ #undef HAVE_SYS_TYPES_H +/* Define to 1 if you have the <termios.h> header file. */ +#undef HAVE_TERMIOS_H + /* Define to 1 if you have the `time' function. */ #undef HAVE_TIME |