From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11747 invoked by alias); 11 Jun 2003 13:51:42 -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 11606 invoked from network); 11 Jun 2003 13:51:39 -0000 Received: from unknown (HELO localhost.redhat.com) (207.219.125.131) by sources.redhat.com with SMTP; 11 Jun 2003 13:51:39 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 292632B63 for ; Wed, 11 Jun 2003 09:51:39 -0400 (EDT) Message-ID: <3EE733EB.30603@redhat.com> Date: Wed, 11 Jun 2003 13:51:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030223 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [ob] Include "remote-fileio.h" Content-Type: multipart/mixed; boundary="------------020306030607080508070209" X-SW-Source: 2003-06/txt/msg00369.txt.bz2 This is a multi-part message in MIME format. --------------020306030607080508070209 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 18 Just FYI. Andrew --------------020306030607080508070209 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1741 2003-06-11 Andrew Cagney * remote-fileio.c: Include "remote-fileio.h". * Makefile.in (remote-fileio.o): Update dependencies. (remote_fileio_h): Fix typo. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.397 diff -u -r1.397 Makefile.in --- Makefile.in 10 Jun 2003 19:29:57 -0000 1.397 +++ Makefile.in 11 Jun 2003 13:48:24 -0000 @@ -710,7 +710,7 @@ reggroups_h = reggroups.h remote_utils_h = remote-utils.h $(target_h) remote_h = remote.h -remote_fileio_h = remote_fileio.h +remote_fileio_h = remote-fileio.h scm_lang_h = scm-lang.h $(scm_tags_h) scm_tags_h = scm-tags.h sentinel_frame_h = sentinel-frame.h @@ -2156,7 +2156,8 @@ $(event_loop_h) $(event_top_h) $(inf_loop_h) $(serial_h) \ $(gdbcore_h) $(solib_h) $(remote-fileio_h) remote-fileio.o: remote-fileio.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \ - $(remote_h) $(gdb_fileio_h) $(gdb_wait_h) $(gdb_stat_h) + $(remote_h) $(gdb_fileio_h) $(gdb_wait_h) $(gdb_stat_h) \ + $(remote_fileio_h) rom68k-rom.o: rom68k-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ $(serial_h) $(regcache_h) $(value_h) $(m68k_tdep_h) rs6000-nat.o: rs6000-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \ Index: remote-fileio.c =================================================================== RCS file: /cvs/src/src/gdb/remote-fileio.c,v retrieving revision 1.3 diff -u -r1.3 remote-fileio.c --- remote-fileio.c 11 Jun 2003 10:24:53 -0000 1.3 +++ remote-fileio.c 11 Jun 2003 13:48:49 -0000 @@ -28,6 +28,7 @@ #include "gdb/fileio.h" #include "gdb_wait.h" #include "gdb_stat.h" +#include "remote-fileio.h" #include #include --------------020306030607080508070209--