From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20688 invoked by alias); 15 Nov 2004 09:48:07 -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 20621 invoked from network); 15 Nov 2004 09:47:59 -0000 Received: from unknown (HELO server7.nfra.nl) (192.87.1.57) by sourceware.org with SMTP; 15 Nov 2004 09:47:59 -0000 Received: from juw15.nfra.nl [10.87.8.15] by server7.nfra.nl; Mon, 15 Nov 2004 10:47:13 +0100 Received: from juw15.nfra.nl (localhost [127.0.0.1]) by juw15.nfra.nl (8.12.2+Sun/8.11.1) with ESMTP id iAF9lVCu018128 for ; Mon, 15 Nov 2004 10:47:31 +0100 (CET) Received: (from kettenis@localhost) by juw15.nfra.nl (8.12.2+Sun/8.12.2/Submit) id iAF9lUWT018125; Mon, 15 Nov 2004 10:47:30 +0100 (CET) Date: Mon, 15 Nov 2004 09:48:00 -0000 Message-Id: <200411150947.iAF9lUWT018125@juw15.nfra.nl> From: Mark Kettenis To: gdb-patches@sources.redhat.com Subject: [COMMIT] Fix compilations problem on sparc-sun-solaris2.9 X-SW-Source: 2004-11/txt/msg00312.txt.bz2 [Message didn't get out to the list last friday, sorry.] Fallout from the recent term.h fix related to Solaris header brandamage. AFAICT "terminal.h" isn't necessary at all in tui-io.c, so I removed it. Let's hope there isn't another braindamages systems that needs it. Mark Index: ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/ChangeLog,v retrieving revision 1.6615 diff -u -p -u -p -r1.6615 ChangeLog --- ChangeLog 12 Nov 2004 01:00:34 -0000 1.6615 +++ ChangeLog 12 Nov 2004 16:04:34 -0000 @@ -1,3 +1,8 @@ +2004-11-12 Mark Kettenis + + * tui/tui-io.c: Don't include "terminal.h". + * Makefile.in (tui-io.o): Update dependencies. + 2004-11-12 Kei Sakamoto * Makefile.in (m32r-linux-tdep.o): Update dependencies. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.663 diff -u -p -u -p -r1.663 Makefile.in --- Makefile.in 12 Nov 2004 01:00:41 -0000 1.663 +++ Makefile.in 12 Nov 2004 16:04:34 -0000 @@ -3036,7 +3036,7 @@ tui-interp.o: $(srcdir)/tui/tui-interp.c $(event_top_h) $(event_loop_h) $(ui_out_h) $(cli_out_h) \ $(tui_data_h) $(readline_h) $(tui_win_h) $(tui_h) $(tui_io_h) $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-interp.c -tui-io.o: $(srcdir)/tui/tui-io.c $(defs_h) $(terminal_h) $(target_h) \ +tui-io.o: $(srcdir)/tui/tui-io.c $(defs_h) $(target_h) \ $(event_loop_h) $(event_top_h) $(command_h) $(top_h) $(tui_h) \ $(tui_data_h) $(tui_io_h) $(tui_command_h) $(tui_win_h) \ $(tui_wingeneral_h) $(tui_file_h) $(ui_out_h) $(cli_out_h) \ Index: tui/tui-io.c =================================================================== RCS file: /cvs/src/src/gdb/tui/tui-io.c,v retrieving revision 1.11 diff -u -p -u -p -r1.11 tui-io.c --- tui/tui-io.c 21 Apr 2004 23:52:21 -0000 1.11 +++ tui/tui-io.c 12 Nov 2004 16:04:34 -0000 @@ -23,7 +23,6 @@ Boston, MA 02111-1307, USA. */ #include "defs.h" -#include "terminal.h" #include "target.h" #include "event-loop.h" #include "event-top.h"