* configure.in, config/i386/tm-linux.h: Fix configure
authorMark Alexander <marka@cygnus>
Fri, 27 Sep 1996 06:13:24 +0000 (06:13 +0000)
committerMark Alexander <marka@cygnus>
Fri, 27 Sep 1996 06:13:24 +0000 (06:13 +0000)
problem on older Linux systems that prevented core files
from being recognized.

gdb/ChangeLog
gdb/configure.in

index 2c4da4f..3121908 100644 (file)
@@ -1,3 +1,23 @@
+Thu Sep 26 23:10:26 1996  Mark Alexander  <marka@cygnus.com>
+
+       * 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  <shebs@andros.cygnus.com>
+
+       * 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  <hunt@pizza.cygnus.com>
+
+       * 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  <shebs@andros.cygnus.com>
 
        * config/sh/tm-sh.h (REGISTER_NAMES): Move fp registers to
index a1d0699..f5094c5 100644 (file)
@@ -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 <sys/procfs.h>],[gregset_t *gregsetp = 0],