From 54225fd0232b294f637682f91d58b35c8f5cbda5 Mon Sep 17 00:00:00 2001 From: Mark Alexander Date: Fri, 27 Sep 1996 06:13:24 +0000 Subject: [PATCH] * configure.in, config/i386/tm-linux.h: Fix configure problem on older Linux systems that prevented core files from being recognized. --- gdb/ChangeLog | 20 ++++++++++++++++++++ gdb/configure.in | 10 ++++++++++ 2 files changed, 30 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2c4da4f..3121908 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,23 @@ +Thu Sep 26 23:10:26 1996 Mark Alexander + + * configure.in, config/i386/tm-linux.h: Fix configure + problem on older Linux systems that prevented core files + from being recognized. + +Wed Sep 25 18:31:33 1996 Stan Shebs + + * dbug-rom.c: New file, support for Motorola's dBUG monitor. + * config/m68k/monitor.mt (TDEPFILES): Add it. + * NEWS: Mention it. + +start-sanitize-d10v +Mon Sep 23 16:13:50 1996 Martin M. Hunt + + * config/d10v/tm-d10v.h (SAVED_PC_AFTER_CALL): Fixed. + Now single-steps correctly. + * d10v-tdep.c (d10v_pop_frame): Fixed. + +end-sanitize-d10v Fri Sep 20 16:10:58 1996 Stan Shebs * config/sh/tm-sh.h (REGISTER_NAMES): Move fp registers to diff --git a/gdb/configure.in b/gdb/configure.in index a1d0699..f5094c5 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -47,6 +47,16 @@ AC_C_CONST AC_CHECK_FUNCS(setpgid sbrk) +# If we are configured native on Linux, work around problems with sys/procfs.h +if test "${target}" = "${host}"; then + case "${host}" in + i[3456]86-*-linux*) + AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,"2") + AC_DEFINE(sys_quotactl) + ;; + esac +fi + AC_MSG_CHECKING([for gregset_t type]) AC_CACHE_VAL(gdb_cv_have_gregset_t, [AC_TRY_LINK([#include ],[gregset_t *gregsetp = 0], -- 2.7.4