* configure.in, config/i386/tm-linux.h: Fix configure

problem on older Linux systems that prevented core files
	from being recognized.
This commit is contained in:
Mark Alexander 1996-09-27 06:13:24 +00:00
parent f7fa777d22
commit 54225fd023
2 changed files with 30 additions and 0 deletions

View 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

View 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],