From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12373 invoked by alias); 6 Aug 2002 15:53:09 -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 12331 invoked from network); 6 Aug 2002 15:53:06 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 6 Aug 2002 15:53:06 -0000 Received: from ges.redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 72CC43CA6; Tue, 6 Aug 2002 11:53:00 -0400 (EDT) Message-ID: <3D4FF0DC.6090201@ges.redhat.com> Date: Tue, 06 Aug 2002 08:53:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020802 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Michael Snyder Cc: gdb-patches@sources.redhat.com Subject: Re: [Fwd: gcore for netbsd] References: <3D4D6C36.8050407@ges.redhat.com> <3D4F023B.A6B5BD9@redhat.com> <3D4F4E3B.4010801@ges.redhat.com> <3D4F4E88.9DDFB7BE@redhat.com> Content-Type: multipart/mixed; boundary="------------060304030805080504070407" X-SW-Source: 2002-08/txt/msg00124.txt.bz2 This is a multi-part message in MIME format. --------------060304030805080504070407 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 53 I've checked the attached in (first bit :-). Andrew --------------060304030805080504070407 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1354 2002-08-06 Andrew Cagney * gcore.c: Do not include . * Makefile.in (gcore.o): Update dependencies. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.233 diff -u -r1.233 Makefile.in --- Makefile.in 5 Aug 2002 16:17:41 -0000 1.233 +++ Makefile.in 6 Aug 2002 15:51:34 -0000 @@ -1404,8 +1404,8 @@ corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \ $(target_h) $(gdbthread_h) $(gdb_string_h) $(regcache_h) -gcore.o: gcore.c $(defs_h) $(command_h) $(inferior_h) $(gdbcore_h) \ - $(BFD_SRC)/elf-bfd.h $(symfile_h) $(objfiles_h) +gcore.o: gcore.c $(defs_h) $(cli_decode_h) $(inferior_h) $(gdbcore_h) \ + $(elf_bfd_h) $(symfile_h) $(objfiles_h) linux-proc.o: linux-proc.c $(defs_h) $(inferior_h) $(regcache_h) $(gregset_h) \ $(gdbcore_h) $(gdbthread_h) $(elf_bfd_h) $(cli_decode_h) \ Index: gcore.c =================================================================== RCS file: /cvs/src/src/gdb/gcore.c,v retrieving revision 1.5 diff -u -r1.5 gcore.c --- gcore.c 12 Apr 2002 23:09:48 -0000 1.5 +++ gcore.c 6 Aug 2002 15:51:34 -0000 @@ -23,7 +23,6 @@ #include "inferior.h" #include "gdbcore.h" #include "elf-bfd.h" -#include #include "symfile.h" #include "objfiles.h" --------------060304030805080504070407--