Your message dated Sat, 30 Jul 2005 08:02:31 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#320523: fixed in gtkdialog 1:0.58.11-3 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; 29 Jul 2005 23:32:41 +0000 >From [EMAIL PROTECTED] Fri Jul 29 16:32:41 2005 Return-path: <[EMAIL PROTECTED]> Received: from zoot.lafn.org [206.117.18.6] by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1DyeLJ-0006O5-00; Fri, 29 Jul 2005 16:32:41 -0700 Received: from localhost.localdomain (pool-71-104-165-253.lsanca.dsl-w.verizon.net [71.104.165.253]) (authenticated bits=0) by zoot.lafn.org (8.13.1/8.13.1) with ESMTP id j6TNWept062334 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for <[EMAIL PROTECTED]>; Fri, 29 Jul 2005 16:32:40 -0700 (PDT) (envelope-from [EMAIL PROTECTED]) Received: from kraai by localhost.localdomain with local (Exim 4.52) id 1DydF6-0001Mj-0O for [EMAIL PROTECTED]; Fri, 29 Jul 2005 15:22:12 -0700 Date: Fri, 29 Jul 2005 15:22:11 -0700 From: Matt Kraai <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: FTBFS: Conflicting declarations of _variables_export Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZoaI/ZTpAVc4A5k6" Content-Disposition: inline User-Agent: Mutt/1.5.9i X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on zoot.lafn.org X-Virus-Status: Clean 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 --ZoaI/ZTpAVc4A5k6 Content-Type: multipart/mixed; boundary="jI8keyz6grp/JLjh" Content-Disposition: inline --jI8keyz6grp/JLjh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Package: gtkdialog Version: 0.58.11-2 Severity: serious Tags: patch gtkdialog fails to build: > if i486-linux-gnu-gcc -DPACKAGE_NAME=3D\"gtkdialog\" -DPACKAGE_TARNAME=3D= \"gtkdialog\" -DPACKAGE_VERSION=3D\"0.58.11\" -DPACKAGE_STRING=3D\"gtkdialo= g\ 0.58.11\" -DPACKAGE_BUGREPORT=3D\"[EMAIL PROTECTED]" -DPACKAGE=3D\"gtk= dialog\" -DVERSION=3D\"0.58.11\" -DYYTEXT_POINTER=3D1 -DSTDC_HEADERS=3D1 -D= HAVE_SYS_TYPES_H=3D1 -DHAVE_SYS_STAT_H=3D1 -DHAVE_STDLIB_H=3D1 -DHAVE_STRIN= G_H=3D1 -DHAVE_MEMORY_H=3D1 -DHAVE_STRINGS_H=3D1 -DHAVE_INTTYPES_H=3D1 -DHA= VE_STDINT_H=3D1 -DHAVE_UNISTD_H=3D1 -DHAVE_LOCALE_H=3D1 -DHAVE_SETLOCALE=3D= 1 -I. -I. -DXTHREADS -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include = -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr= /include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -= Wall -g -O2 -MT variables.o -MD -MP -MF ".deps/variables.Tpo" -c -o variabl= es.o variables.c; \ > then mv -f ".deps/variables.Tpo" ".deps/variables.Po"; else rm -f ".deps/= variables.Tpo"; exit 1; fi > variables.c: In function 'variables_new': > variables.c:48: warning: implicit declaration of function '_tree_insert' > variables.c: In function 'variables_save': > variables.c:214: warning: implicit declaration of function 'widget_edit_s= ave' > variables.c: In function '_tree_insert': > variables.c:321: warning: too few arguments for format > variables.c:341: warning: suggest explicit braces to avoid ambiguous 'els= e' > variables.c:349: warning: suggest explicit braces to avoid ambiguous 'els= e' > variables.c: In function '_tree_find': > variables.c:376: warning: suggest explicit braces to avoid ambiguous 'els= e' > variables.c:382: warning: suggest explicit braces to avoid ambiguous 'els= e' > variables.c: In function '_variables_initialize': > variables.c:439: warning: implicit declaration of function 'yywarning' > variables.c: At top level: > variables.c:449: error: static declaration of '_variables_export' follows= non-static declaration > variables.c:10: error: previous declaration of '_variables_export' was he= re > variables.c: In function '_variables_export': > variables.c:502: warning: format '%s' expects type 'char *', but argument= 3 has type 'gpointer' > variables.c: In function 'print_variables': > variables.c:567: warning: format '%s' expects type 'char *', but argument= 2 has type 'gpointer' > variables.c: In function 'append_fromto_variable': > variables.c:617: warning: passing argument 1 of 'gtk_list_prepend_items' = =66rom incompatible pointer type > variables.c:625: warning: passing argument 1 of 'gtk_entry_set_text' from= incompatible pointer type > variables.c: In function 'remove_selected_variable': > variables.c:683: warning: unused variable 'empty' The attached patch fixes this problem by making the first declaration static. --=20 Matt --jI8keyz6grp/JLjh Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch Content-Transfer-Encoding: quoted-printable only in patch2: unchanged: --- gtkdialog-0.58.11.orig/src/variables.c +++ gtkdialog-0.58.11/src/variables.c @@ -6,7 +6,7 @@ ** Local functions... */ variable *_tree_find(const char *name, variable * actual); -void _variables_export(variable * actual); +static void _variables_export(variable * actual); =20 extern GtkWidget *window; /* The actual window */ variable *root =3D NULL; --jI8keyz6grp/JLjh-- --ZoaI/ZTpAVc4A5k6 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC6qwTfNdgYxVXvBARAsMkAJ94WTwB7V51AFXeZAUvz6FirrY2NQCfZi7F 1d7psI6mBEZ8gqPlVqchf58= =Eq0J -----END PGP SIGNATURE----- --ZoaI/ZTpAVc4A5k6-- --------------------------------------- Received: (at 320523-close) by bugs.debian.org; 30 Jul 2005 15:10:04 +0000 >From [EMAIL PROTECTED] Sat Jul 30 08:10:04 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1Dysr9-0001hI-00; Sat, 30 Jul 2005 08:02:31 -0700 From: Fabio Tranchitella <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#320523: fixed in gtkdialog 1:0.58.11-3 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Sat, 30 Jul 2005 08:02:31 -0700 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=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 Source: gtkdialog Source-Version: 1:0.58.11-3 We believe that the bug you reported is fixed in the latest version of gtkdialog, which is due to be installed in the Debian FTP archive: gtkdialog_0.58.11-3.diff.gz to pool/main/g/gtkdialog/gtkdialog_0.58.11-3.diff.gz gtkdialog_0.58.11-3.dsc to pool/main/g/gtkdialog/gtkdialog_0.58.11-3.dsc gtkdialog_0.58.11-3_i386.deb to pool/main/g/gtkdialog/gtkdialog_0.58.11-3_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Fabio Tranchitella <[EMAIL PROTECTED]> (supplier of updated gtkdialog package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Sat, 30 Jul 2005 14:43:50 +0000 Source: gtkdialog Binary: gtkdialog Architecture: source i386 Version: 1:0.58.11-3 Distribution: unstable Urgency: low Maintainer: Fabio Tranchitella <[EMAIL PROTECTED]> Changed-By: Fabio Tranchitella <[EMAIL PROTECTED]> Description: gtkdialog - GUI-creation command-line utility based on GTK+ library Closes: 320523 Changes: gtkdialog (1:0.58.11-3) unstable; urgency=low . * debian/patches/variables-static.dpatch: fix a FTBFS bug (thanks to Matt Kraai <[EMAIL PROTECTED]>). (Closes: #320523) Files: 8449246b41345f638cba2a353ea93aaa 659 interpreters optional gtkdialog_0.58.11-3.dsc 43d98e8277a42a0b1e21bf17cf85ddcd 30701 interpreters optional gtkdialog_0.58.11-3.diff.gz 243f867667c3e2b5f304651db8c26b50 55560 interpreters optional gtkdialog_0.58.11-3_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC65KhK/juK3+WFWQRAq0VAJ9aklSFB0ApR459fFsiU9ZkvLvWkwCfXZaC jHl6NQ0jI5GJwr6aXA8wJ1Y= =P7nT -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]