aboutsummaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2007-11-17 00:41:17 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2007-11-17 00:41:17 +0000
commitdb985757a96d0f4e93572e0fc1b9d7a493c02a05 (patch)
tree63eaf237ad0bb7230e9987e288b9923f90f50f81 /gdb/defs.h
parent3da755263cfe08499fccfa46305c926b462de3eb (diff)
downloadfsf-binutils-gdb-db985757a96d0f4e93572e0fc1b9d7a493c02a05.zip
fsf-binutils-gdb-db985757a96d0f4e93572e0fc1b9d7a493c02a05.tar.gz
fsf-binutils-gdb-db985757a96d0f4e93572e0fc1b9d7a493c02a05.tar.bz2
* configure.ac (hostfile, targetfile): Remove.
(GDB_XM_FILE, GDB_TM_FILE): Do not define. (xm_h, tm_h): Likewise. (DEPRECATED_TM_FILE, XM_FILE): Do not substitute into Makefile. * configure, config.in: Regenerate. * Makefile.in (xm_h, tm_h): Remove. Update dependencies. (TAGS): Do not consider DEPRECATED_TM_FILE or XM_FILE. (clean, local-maintainer-clean): Do not remove xm.h or tm.h. * defs.h: Do not include "xm.h" or "tm.h". * gdbarch.sh (verify_gdbarch): Do not dump GDB_XM_FILE or GDB_TM_FILE. * gdbarch.c: Regenerate. * config/score/embed.mt: Remove obsolete comment.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index deaa528..1b8cd2a 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -795,14 +795,6 @@ typedef struct ptid ptid_t;
-/* Optional host machine definition. Pure autoconf targets will not
- need a "xm.h" file. This will be a symlink to one of the xm-*.h
- files, built by the `configure' script. */
-
-#ifdef GDB_XM_FILE
-#include "xm.h"
-#endif
-
/* Optional native machine support. Non-native (and possibly pure
multi-arch) targets do not need a "nm.h" file. This will be a
symlink to one of the nm-*.h files, built by the `configure'
@@ -812,14 +804,6 @@ typedef struct ptid ptid_t;
#include "nm.h"
#endif
-/* Optional target machine definition. Pure multi-arch configurations
- do not need a "tm.h" file. This will be a symlink to one of the
- tm-*.h files, built by the `configure' script. */
-
-#ifdef GDB_TM_FILE
-#include "tm.h"
-#endif
-
/* Assume that fopen accepts the letter "b" in the mode string.
It is demanded by ISO C9X, and should be supported on all
platforms that claim to have a standard-conforming C library. On