This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ob] Fix sparcnbsd-tdep.c compilation problem


Fallout from Dan's floatformat diff.

Committed,

Mark


Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>

	* sparcnbsd-tdep.c: Include "gdbtypes.h" instead of "floatformat.h".
	* Makefile.in (sparcnbsd-tdep.o): Update dependencies.

Index: sparcnbsd-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/sparcnbsd-tdep.c,v
retrieving revision 1.30
diff -u -p -r1.30 sparcnbsd-tdep.c
--- sparcnbsd-tdep.c 29 Jan 2007 17:31:06 -0000 1.30
+++ sparcnbsd-tdep.c 8 Feb 2007 10:36:53 -0000
@@ -21,10 +21,10 @@
    Boston, MA 02110-1301, USA.  */
 
 #include "defs.h"
-#include "floatformat.h"
 #include "frame.h"
 #include "frame-unwind.h"
 #include "gdbcore.h"
+#include "gdbtypes.h"
 #include "osabi.h"
 #include "regcache.h"
 #include "regset.h"
Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.873
diff -u -p -r1.873 Makefile.in
--- Makefile.in 9 Jan 2007 22:55:09 -0000 1.873
+++ Makefile.in 8 Feb 2007 10:36:55 -0000
@@ -2705,8 +2705,8 @@ sparc-nat.o: sparc-nat.c $(defs_h) $(inf
 	$(sparc_nat_h) $(inf_ptrace_h)
 sparcnbsd-nat.o: sparcnbsd-nat.c $(defs_h) $(regcache_h) $(target_h) \
 	$(sparc_tdep_h) $(sparc_nat_h) $(bsd_kvm_h)
-sparcnbsd-tdep.o: sparcnbsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \
-	$(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \
+sparcnbsd-tdep.o: sparcnbsd-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
+	$(gdbcore_h) $(gdbtypes_h) $(osabi_h) $(regcache_h) $(regset_h) \
 	$(solib_svr4_h) $(symtab_h) $(trad_frame_h) $(gdb_assert_h) \
 	$(gdb_string_h) $(sparc_tdep_h) $(nbsd_tdep_h)
 sparcobsd-tdep.o: sparcobsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]