From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20171 invoked by alias); 8 Feb 2007 10:40:41 -0000 Received: (qmail 20163 invoked by uid 22791); 8 Feb 2007 10:40:40 -0000 X-Spam-Check-By: sourceware.org Received: from sibelius.xs4all.nl (HELO brahms.sibelius.xs4all.nl) (82.92.89.47) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 08 Feb 2007 10:40:35 +0000 Received: from brahms.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by brahms.sibelius.xs4all.nl (8.14.0/8.14.0) with ESMTP id l18AeVBx025054 for ; Thu, 8 Feb 2007 11:40:31 +0100 (CET) Received: (from kettenis@localhost) by brahms.sibelius.xs4all.nl (8.14.0/8.14.0/Submit) id l18AeV3p020858; Thu, 8 Feb 2007 11:40:31 +0100 (CET) Date: Thu, 08 Feb 2007 10:40:00 -0000 Message-Id: <200702081040.l18AeV3p020858@brahms.sibelius.xs4all.nl> From: Mark Kettenis To: gdb-patches@sourceware.org Subject: [ob] Fix sparcnbsd-tdep.c compilation problem Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-02/txt/msg00066.txt.bz2 Fallout from Dan's floatformat diff. Committed, Mark Index: ChangeLog from Mark Kettenis * 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) \