From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23640 invoked by alias); 25 Oct 2002 21:24:10 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23505 invoked from network); 25 Oct 2002 21:24:08 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (62.163.169.250) by sources.redhat.com with SMTP; 25 Oct 2002 21:24:08 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.5/8.12.5) with ESMTP id g9PLO4Bv000590; Fri, 25 Oct 2002 23:24:04 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6/8.12.6) with ESMTP id g9PLO4hb036933; Fri, 25 Oct 2002 23:24:04 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6/8.12.6/Submit) id g9PLO4SP036930; Fri, 25 Oct 2002 23:24:04 +0200 (CEST) Date: Fri, 25 Oct 2002 14:24:00 -0000 Message-Id: <200210252124.g9PLO4SP036930@elgar.kettenis.dyndns.org> From: Mark Kettenis To: brobecker@gnat.com CC: gdb-patches@sources.redhat.com In-reply-to: <20021025202934.GF4370@gnat.com> (message from Joel Brobecker on Fri, 25 Oct 2002 13:29:34 -0700) Subject: Re: [PATCH] Fix i386v-nat.c compilation References: <200210251855.g9PItbX2000711@elgar.kettenis.dyndns.org> <20021025202934.GF4370@gnat.com> X-SW-Source: 2002-10/txt/msg00550.txt.bz2 Date: Fri, 25 Oct 2002 13:29:34 -0700 From: Joel Brobecker > Index: ChangeLog > from Mark Kettenis > > * i386v-nat.c: Include "i386-tdep.h". I think that Makefile.in should be updated too: Add $(i386_tdep_h) to the rule for i386v-nat.o. Oops. Fixed with the attached patch. Index: ChangeLog from Mark Kettenis * Makefile.in (i386v-nat.o): Add $(i386_tdep_h). Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.272 diff -u -p -r1.272 Makefile.in --- Makefile.in 24 Oct 2002 00:13:57 -0000 1.272 +++ Makefile.in 25 Oct 2002 21:12:54 -0000 @@ -1763,7 +1763,7 @@ i386obsd-nat.o: i386obsd-nat.c $(defs_h) i386obsd-tdep.o: i386obsd-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \ $(regcache_h) $(i386_tdep_h) $(i387_tdep_h) i386v-nat.o: i386v-nat.c $(defs_h) $(frame_h) $(inferior_h) $(language_h) \ - $(gdbcore_h) $(gdb_stat_h) $(floatformat_h) $(target_h) + $(gdbcore_h) $(gdb_stat_h) $(floatformat_h) $(target_h) $(i386_tdep_h) i386v4-nat.o: i386v4-nat.c $(defs_h) $(value_h) $(inferior_h) $(regcache_h) \ $(i386_tdep_h) $(i387_tdep_h) $(gregset_h) i387-tdep.o: i387-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(language_h) \