From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26921 invoked by alias); 7 Nov 2005 14:57:20 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 26913 invoked by uid 22791); 7 Nov 2005 14:57:17 -0000 Received: from fra-del-01.spheriq.net (HELO fra-del-01.spheriq.net) (195.46.51.97) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Mon, 07 Nov 2005 14:57:17 +0000 Received: from fra-out-03.spheriq.net (fra-out-03.spheriq.net [195.46.51.131]) by fra-del-01.spheriq.net with ESMTP id jA7EvEax025180 for ; Mon, 7 Nov 2005 14:57:14 GMT Received: from fra-cus-02.spheriq.net (fra-cus-02.spheriq.net [195.46.51.38]) by fra-out-03.spheriq.net with ESMTP id jA7EvEvf027030 for ; Mon, 7 Nov 2005 14:57:14 GMT Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by fra-cus-02.spheriq.net with ESMTP id jA7EvD6s018945 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Mon, 7 Nov 2005 14:57:13 GMT Received: from zeta.dmz-eu.st.com (ns2.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 9CCD2DA4A for ; Mon, 7 Nov 2005 14:57:08 +0000 (GMT) Received: by zeta.dmz-eu.st.com (STMicroelectronics, from userid 60012) id 504BB473E6; Mon, 7 Nov 2005 15:00:03 +0000 (GMT) Received: from zeta.dmz-eu.st.com (localhost [127.0.0.1]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 11FA175999 for ; Mon, 7 Nov 2005 15:00:03 +0000 (UTC) Received: from mail1.bri.st.com (mail1.bri.st.com [164.129.8.218]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 9DB95473DA for ; Mon, 7 Nov 2005 15:00:02 +0000 (GMT) Received: from [164.129.15.13] (terrorhawk.bri.st.com [164.129.15.13]) by mail1.bri.st.com (MOS 3.5.8-GR) with ESMTP id CGG01361 (AUTH "andrew stubbs"); Mon, 7 Nov 2005 14:57:07 GMT Message-ID: <436F6ABF.4030306@st.com> Date: Mon, 07 Nov 2005 15:06:00 -0000 From: Andrew STUBBS User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [PATCH] Fix dependency Content-Type: multipart/mixed; boundary="------------090604070406030108080309" X-O-Spoofed: Not Scanned X-O-General-Status: No X-O-Spam1-Status: Not Scanned X-O-Spam2-Status: Not Scanned X-O-URL-Status: Not Scanned X-O-Virus1-Status: No X-O-Virus2-Status: Not Scanned X-O-Virus3-Status: No X-O-Virus4-Status: No X-O-Virus5-Status: Not Scanned X-O-Image-Status: Not Scanned X-O-Attach-Status: Not Scanned X-SpheriQ-Ver: 4.1.07 X-SW-Source: 2005-11/txt/msg00079.txt.bz2 This is a multi-part message in MIME format. --------------090604070406030108080309 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 267 I forgot to update the dependencies for my fix to the union comparison in the TUI. It isn't exactly the end of the world but probably ought to be sorted out. The attached patch should address the issue. Is this OK on both mainline and 6.4? Thanks Andrew Stubbs --------------090604070406030108080309 Content-Type: text/plain; name="deps.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="deps.patch" Content-length: 750 2005-11-07 Andrew Stubbs * Makefile.in (tui-winsource.o): Add gdb_assert.h to dependencies. Index: src/gdb/Makefile.in =================================================================== --- src.orig/gdb/Makefile.in 2005-11-07 14:26:39.000000000 +0000 +++ src/gdb/Makefile.in 2005-11-07 14:50:50.000000000 +0000 @@ -3139,7 +3139,7 @@ tui-winsource.o: $(srcdir)/tui/tui-winso $(frame_h) $(breakpoint_h) $(value_h) $(source_h) $(tui_h) \ $(tui_data_h) $(tui_stack_h) $(tui_win_h) $(tui_wingeneral_h) \ $(tui_winsource_h) $(tui_source_h) $(tui_disasm_h) $(gdb_string_h) \ - $(gdb_curses_h) + $(gdb_curses_h) $(gdb_assert_h) $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-winsource.c ### end of the gdb Makefile.in. --------------090604070406030108080309--