diff options
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 6 | ||||
-rwxr-xr-x | gdb/gdbserver/configure | 2 | ||||
-rw-r--r-- | gdb/gdbserver/gdbreplay.c | 2 | ||||
-rw-r--r-- | gdb/gdbserver/server.h | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 13bde11..96d598d 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,11 @@ 2013-11-18 Tom Tromey <tromey@redhat.com> + * server.h: Don't check HAVE_STRING_H. + * gdbreplay.c: Don't check HAVE_STRING_H. + * configure: Rebuild. + +2013-11-18 Tom Tromey <tromey@redhat.com> + * Makefile.in (gdbreplay$(EXEEXT)): Depend on and link against LIBGNU. diff --git a/gdb/gdbserver/configure b/gdb/gdbserver/configure index 6bef97c1..096c7b3 100755 --- a/gdb/gdbserver/configure +++ b/gdb/gdbserver/configure @@ -5420,7 +5420,7 @@ $as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h fi - for ac_header in linux/perf_event.h locale.h memory.h signal.h string.h strings.h sys/resource.h sys/socket.h sys/syscall.h sys/un.h sys/wait.h thread_db.h wait.h + for ac_header in linux/perf_event.h locale.h memory.h signal.h sys/resource.h sys/socket.h sys/syscall.h sys/un.h sys/wait.h thread_db.h wait.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" diff --git a/gdb/gdbserver/gdbreplay.c b/gdb/gdbserver/gdbreplay.c index 5e64f6d..1f823e0 100644 --- a/gdb/gdbserver/gdbreplay.c +++ b/gdb/gdbserver/gdbreplay.c @@ -38,9 +38,7 @@ #ifdef HAVE_STDLIB_H #include <stdlib.h> #endif -#ifdef HAVE_STRING_H #include <string.h> -#endif #include <unistd.h> #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> diff --git a/gdb/gdbserver/server.h b/gdb/gdbserver/server.h index 05724e0..32cf416 100644 --- a/gdb/gdbserver/server.h +++ b/gdb/gdbserver/server.h @@ -41,9 +41,7 @@ /* For gnulib's PATH_MAX. */ #include "pathmax.h" -#ifdef HAVE_STRING_H #include <string.h> -#endif #ifdef HAVE_ALLOCA_H #include <alloca.h> |