* breakpoint.c (break_at_finish_command): Really export.

(break_at_finish_at_depth_command): Ditto.
	(tbreak_at_finish_command): Ditto.
	* hppa-tdep.c: Include completer.h.
	* Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
	(COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
This commit is contained in:
Peter Schauer 2002-02-03 11:43:19 +00:00
parent 328bc7cbba
commit e5d6672073
4 changed files with 15 additions and 6 deletions

View File

@ -1,3 +1,12 @@
2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
* breakpoint.c (break_at_finish_command): Really export.
(break_at_finish_at_depth_command): Ditto.
(tbreak_at_finish_command): Ditto.
* hppa-tdep.c: Include completer.h.
* Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
(COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
2002-02-01 Andrew Cagney <ac131313@redhat.com>
* utils.c (do_write): New function.

View File

@ -721,8 +721,6 @@ COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o regcache.o \
nlmread.o serial.o mdebugread.o os9kread.o top.o utils.o \
ui-file.o \
frame.o doublest.o \
ui-file.o \
frame.o doublest.o \
gnu-v2-abi.o gnu-v3-abi.o hpacc-abi.o cp-abi.o
OBS = $(COMMON_OBS) $(ANNOTATE_OBS)
@ -1540,7 +1538,8 @@ hpacc-abi.o: hpacc-abi.c $(defs_h) $(cp_abi_h) $(gdb_string_h) $(gdbtypes_h) \
$(value_h) $(gdbcore_h)
hppa-tdep.o: hppa-tdep.c gdb_wait.h $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) $(objfiles_h) $(symfile_h) $(target_h) $(regcache_h)
$(inferior_h) $(objfiles_h) $(symfile_h) $(target_h) $(regcache_h) \
$(completer_h)
hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(target_h) \
$(regcache_h)

View File

@ -84,10 +84,10 @@ static void watch_command (char *, int);
static int can_use_hardware_watchpoint (struct value *);
static void break_at_finish_command (char *, int);
static void break_at_finish_at_depth_command (char *, int);
extern void break_at_finish_command (char *, int);
extern void break_at_finish_at_depth_command (char *, int);
static void tbreak_at_finish_command (char *, int);
extern void tbreak_at_finish_command (char *, int);
static void break_command_1 (char *, int, int);

View File

@ -28,6 +28,7 @@
#include "inferior.h"
#include "value.h"
#include "regcache.h"
#include "completer.h"
/* For argument passing to the inferior */
#include "symtab.h"