* breakpoint.c (break_at_finish_command): Really export.
authorPeter Schauer <Peter.Schauer@mytum.de>
Sun, 3 Feb 2002 11:43:19 +0000 (11:43 +0000)
committerPeter Schauer <Peter.Schauer@mytum.de>
Sun, 3 Feb 2002 11:43:19 +0000 (11:43 +0000)
(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.

gdb/ChangeLog
gdb/Makefile.in
gdb/breakpoint.c
gdb/hppa-tdep.c

index ac4d9e4..7776e67 100644 (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.
index 215c698..2fa3330 100644 (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)
index bf53be8..cbde2bc 100644 (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);
 
index 723c978..157fb8a 100644 (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"