Your message dated Mon, 31 Oct 2005 02:45:22 +1100 with message-id <[EMAIL PROTECTED]> and subject line glimmer: FTBFS (amd64/gcc-4.0): has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 22 Dec 2004 07:09:37 +0000 >From [EMAIL PROTECTED] Tue Dec 21 23:09:37 2004 Return-path: <[EMAIL PROTECTED]> Received: from c158178.adsl.hansenet.de (localhost.localdomain) [213.39.158.178] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Ch0cp-0005rp-00; Tue, 21 Dec 2004 23:09:35 -0800 Received: from aj by localhost.localdomain with local (Exim 4.34) id 1Ch0hY-0006DV-PV; Wed, 22 Dec 2004 08:14:28 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: glimmer: FTBFS (amd64/gcc-4.0): Message-Id: <[EMAIL PROTECTED]> Date: Wed, 22 Dec 2004 08:14:28 +0100 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: Package: glimmer Severity: normal Tags: patch When building 'glimmer' on amd64 with gcc-4.0, I get the following error: gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I/usr/include -I/usr/include/gnome-1.0 -DNEED_GNOMESUPPORT_H -I/usr/lib/gnome-libs/include -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/include/orbit-1.0 -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/include/gtk-1.2 -I/usr/include/gdk-pixbuf-1.0 -I/usr/include/gnome-1.0 -I/usr/include/freetype2 -DNEED_GNOMESUPPORT_H -I/usr/lib/gnome-libs/include -I/usr/include/gnome-xml -I/usr/include/gnome-vfs-1.0 -I/usr/lib/gnome-vfs-1.0/include -I/usr/include/orbit-1.0 -I/usr/include/gconf/1 -D_REENTRANT -g -Wall -Wunused -O2 -c gtkextext.c gtkextext.c: In function 'text_get_text_with_expanded_tabs': gtkextext.c:963: warning: cast from pointer to integer of different size gtkextext.c: In function 'text_get_text': gtkextext.c:999: warning: cast from pointer to integer of different size gtkextext.c:1005: warning: cast from pointer to integer of different size gtkextext.c: In function 'text_get_text_no_replace': gtkextext.c:1039: warning: cast from pointer to integer of different size gtkextext.c:1045: warning: cast from pointer to integer of different size gtkextext.c: In function 'line_set_cursor_pos': gtkextext.c:1143: error: invalid lvalue in assignment With the attached patch 'glimmer' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/glimmer-1.2.1/src/gtkextext/gtkextext.c ./src/gtkextext/gtkextext.c --- ../tmp-orig/glimmer-1.2.1/src/gtkextext/gtkextext.c 2002-01-10 19:17:54.000000000 +0100 +++ ./src/gtkextext/gtkextext.c 2004-12-22 07:51:12.746159504 +0100 @@ -1140,7 +1140,8 @@ val = (gfloat) width; gtk_adjustment_set_value (text->hadj, val); } else if (text->draw_numbers && width < (val + text->gutter_width)) { - val = (gfloat) width -= text->gutter_width; + width -= text->gutter_width; + val = (gfloat) width; gtk_adjustment_set_value (text->hadj, val); } diff -urN ../tmp-orig/glimmer-1.2.1/src/widgets/gnome-settings.c ./src/widgets/gnome-settings.c --- ../tmp-orig/glimmer-1.2.1/src/widgets/gnome-settings.c 2002-01-10 19:03:19.000000000 +0100 +++ ./src/widgets/gnome-settings.c 2004-12-22 07:52:06.480990568 +0100 @@ -138,7 +138,7 @@ gtk_widget_hide (settings->current); if (data) { gtk_widget_show (GTK_WIDGET (data)); - (void *) settings->current = data; + settings->current = data; } } --------------------------------------- Received: (at 286783-done) by bugs.debian.org; 30 Oct 2005 15:45:26 +0000 >From [EMAIL PROTECTED] Sun Oct 30 07:45:26 2005 Return-path: <[EMAIL PROTECTED]> Received: from crumbs.ertius.org [67.18.176.136] (postfix) by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1EWFN8-0003VS-00; Sun, 30 Oct 2005 07:45:26 -0800 Received: from ooder.vpn.ertius.org (ooder.vpn.ertius.org [10.10.0.1]) by crumbs.ertius.org (Postfix) with ESMTP id 19C3C7168C for <[EMAIL PROTECTED]>; Mon, 31 Oct 2005 02:45:25 +1100 (EST) Received: by ooder.vpn.ertius.org (Postfix, from userid 1000) id C18DB780F5; Mon, 31 Oct 2005 02:45:22 +1100 (EST) Date: Mon, 31 Oct 2005 02:45:22 +1100 From: Rob Weir <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: glimmer: FTBFS (amd64/gcc-4.0): Message-ID: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[EMAIL PROTECTED]> User-Agent: Mutt/1.5.9i Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no version=2.60-bugs.debian.org_2005_01_02 On Wed, Dec 22, 2004 at 08:14:28AM +0100, Andreas Jochens said > When building 'glimmer' on amd64 with gcc-4.0, > I get the following error: > > gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I/usr/include > -I/usr/include/gnome-1.0 -DNEED_GNOMESUPPORT_H -I/usr/lib/gnome-libs/include > -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/include/orbit-1.0 > -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include > -I/usr/include/gtk-1.2 -I/usr/include/gdk-pixbuf-1.0 -I/usr/include/gnome-1.0 > -I/usr/include/freetype2 -DNEED_GNOMESUPPORT_H -I/usr/lib/gnome-libs/include > -I/usr/include/gnome-xml -I/usr/include/gnome-vfs-1.0 > -I/usr/lib/gnome-vfs-1.0/include -I/usr/include/orbit-1.0 > -I/usr/include/gconf/1 -D_REENTRANT -g -Wall -Wunused -O2 -c gtkextext.c > gtkextext.c: In function 'text_get_text_with_expanded_tabs': > gtkextext.c:963: warning: cast from pointer to integer of different size > gtkextext.c: In function 'text_get_text': > gtkextext.c:999: warning: cast from pointer to integer of different size > gtkextext.c:1005: warning: cast from pointer to integer of different size > gtkextext.c: In function 'text_get_text_no_replace': > gtkextext.c:1039: warning: cast from pointer to integer of different size > gtkextext.c:1045: warning: cast from pointer to integer of different size > gtkextext.c: In function 'line_set_cursor_pos': > gtkextext.c:1143: error: invalid lvalue in assignment > > With the attached patch 'glimmer' can be compiled > on amd64 using gcc-4.0. Gone from unstable. -rob -- Not even if we rub the engine with cheetah blood? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]