diff options
author | Tom Tromey <tromey@redhat.com> | 2013-11-06 07:17:47 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-11-18 13:29:01 -0700 |
commit | a3d08894e544f6b9e65581469cbbafbe39a353fe (patch) | |
tree | 11f5b4577b452a1c0c1512012f9b119650c7f07e /gdb/gdbserver/server.h | |
parent | 0e9f083f4cb94a9dc861f38ba151aac06efce2b8 (diff) | |
download | gdb-a3d08894e544f6b9e65581469cbbafbe39a353fe.zip gdb-a3d08894e544f6b9e65581469cbbafbe39a353fe.tar.gz gdb-a3d08894e544f6b9e65581469cbbafbe39a353fe.tar.bz2 |
don't check for string.h or strings.h
Now that we are using the gnulib string.h module, we don't need to
check for string.h or strings.h. This removes the last few checks
from the source and from the configure scripts.
2013-11-18 Tom Tromey <tromey@redhat.com>
* configure: Rebuild.
* common/common.m4 (GDB_AC_COMMON): Don't check for string.h or
strings.h.
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.
Diffstat (limited to 'gdb/gdbserver/server.h')
-rw-r--r-- | gdb/gdbserver/server.h | 2 |
1 files changed, 0 insertions, 2 deletions
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> |