Your message dated Sat, 19 Feb 2005 09:47:28 -0500 with message-id <[EMAIL PROTECTED]> and subject line Bug#288411: fixed in rlplot 0.99.14-1 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; 3 Jan 2005 16:40:05 +0000 >From [EMAIL PROTECTED] Mon Jan 03 08:40:04 2005 Return-path: <[EMAIL PROTECTED]> Received: from c173214.adsl.hansenet.de (localhost.localdomain) [213.39.173.214] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1ClVFU-0000Lr-00; Mon, 03 Jan 2005 08:40:04 -0800 Received: from aj by localhost.localdomain with local (Exim 4.34) id 1ClVKz-0005IO-PU; Mon, 03 Jan 2005 17:45:45 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: rlplot: FTBFS (amd64/gcc-4.0): cast from 'void*' to 'int' loses precision Message-Id: <[EMAIL PROTECTED]> Date: Mon, 03 Jan 2005 17:45:45 +0100 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-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-Spam-Level: Package: rlplot Severity: normal Tags: patch When building 'rlplot' on amd64 with gcc-4.0, I get the following error: g++ -I/usr/share/qt3/include -pipe -O2 -o TheDialog.o -c TheDialog.cpp TheDialog.cpp: In constructor 'DlgRoot::DlgRoot(DlgInfo*)': TheDialog.cpp:95: error: cast from 'void*' to 'int' loses precision TheDialog.cpp:116: error: cast from 'void*' to 'int' loses precision TheDialog.cpp:149: error: cast from 'void*' to 'int' loses precision make[2]: *** [TheDialog.o] Error 1 make[2]: Leaving directory `/rlplot-0.99.9' Additionally, please remove the Build-Depends on 'libstdc++5-3.3-dev', since 'libstdc++-dev' is build-essential and should not be specified explicitly in the Build-Depends. With the attached patch 'rlplot' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/rlplot-0.99.9/TheDialog.cpp ./TheDialog.cpp --- ../tmp-orig/rlplot-0.99.9/TheDialog.cpp 2004-08-17 16:14:49.000000000 +0200 +++ ./TheDialog.cpp 2005-01-03 17:38:06.208341688 +0100 @@ -92,7 +92,7 @@ dlg[i]->dialog = new TextBox(this, &tmpl[i],rc,(char*)tmpl[i].ptype); break; case ARROWBUTT: - dlg[i]->dialog = new ArrowButton(this, &tmpl[i],rc,(int)tmpl[i].ptype); + dlg[i]->dialog = new ArrowButton(this, &tmpl[i],rc,(long)tmpl[i].ptype); break; case COLBUTTON: dlg[i]->dialog = new ColorButton(this, &tmpl[i],rc, (unsigned long)tmpl[i].ptype); @@ -113,7 +113,7 @@ dlg[i]->dialog = new FillRadioButt(this, &tmpl[i],rc, *((unsigned int*)tmpl[i].ptype)); break; case SYMRADIO: - dlg[i]->dialog = new SymRadioButt(this, &tmpl[i],rc, (int)tmpl[i].ptype); + dlg[i]->dialog = new SymRadioButt(this, &tmpl[i],rc, (long)tmpl[i].ptype); break; case CHECKBOX: dlg[i]->dialog = new CheckBox(this, &tmpl[i],rc,(char*)tmpl[i].ptype); @@ -146,7 +146,7 @@ dlg[i]->dialog = new ScrollBar(this, &tmpl[i],rc, false); break; case ICON: - dlg[i]->dialog = new Icon(this, &tmpl[i],rc, (int)tmpl[i].ptype); + dlg[i]->dialog = new Icon(this, &tmpl[i],rc, (long)tmpl[i].ptype); break; case GROUP: dlg[i]->dialog = new Group(this, &tmpl[i], rc); diff -urN ../tmp-orig/rlplot-0.99.9/debian/control ./debian/control --- ../tmp-orig/rlplot-0.99.9/debian/control 2005-01-03 17:38:24.245599608 +0100 +++ ./debian/control 2005-01-03 17:38:19.589307472 +0100 @@ -2,7 +2,7 @@ Section: math Priority: optional Maintainer: James Stone <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libqt3-mt-dev (>= 3 ), libstdc++5-3.3-dev (>= 1 ), libx11-dev (>= 4.3 ) +Build-Depends: debhelper (>= 4.0.0), libqt3-mt-dev (>= 3 ), libx11-dev (>= 4.3 ) Standards-Version: 3.6.1 Package: rlplot --------------------------------------- Received: (at 288411-close) by bugs.debian.org; 19 Feb 2005 14:53:37 +0000 >From [EMAIL PROTECTED] Sat Feb 19 06:53:37 2005 Return-path: <[EMAIL PROTECTED]> Received: from newraff.debian.org [208.185.25.31] (mail) by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1D2VzF-0007XZ-00; Sat, 19 Feb 2005 06:53:37 -0800 Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian)) id 1D2VtI-0006I0-00; Sat, 19 Feb 2005 09:47:28 -0500 From: James Stone <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.55 $ Subject: Bug#288411: fixed in rlplot 0.99.14-1 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Sat, 19 Feb 2005 09:47:28 -0500 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-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 X-Spam-Level: Source: rlplot Source-Version: 0.99.14-1 We believe that the bug you reported is fixed in the latest version of rlplot, which is due to be installed in the Debian FTP archive: rlplot_0.99.14-1.diff.gz to pool/main/r/rlplot/rlplot_0.99.14-1.diff.gz rlplot_0.99.14-1.dsc to pool/main/r/rlplot/rlplot_0.99.14-1.dsc rlplot_0.99.14-1_i386.deb to pool/main/r/rlplot/rlplot_0.99.14-1_i386.deb rlplot_0.99.14.orig.tar.gz to pool/main/r/rlplot/rlplot_0.99.14.orig.tar.gz 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. James Stone <[EMAIL PROTECTED]> (supplier of updated rlplot 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: Tue, 15 Feb 2005 16:58:11 +0000 Source: rlplot Binary: rlplot Architecture: source i386 Version: 0.99.14-1 Distribution: unstable Urgency: low Maintainer: James Stone <[EMAIL PROTECTED]> Changed-By: James Stone <[EMAIL PROTECTED]> Description: rlplot - Generate publication quality graphs Closes: 288411 Changes: rlplot (0.99.14-1) unstable; urgency=low . * New upstream release * Removed build-depends on libstdc++5-3.3-dev. * Upstream change to TheDialog.cpp. closes: #288411 * Upload sponsored by Matthew Palmer <[EMAIL PROTECTED]> Files: 2caf0198ebea59bc3928681823e1fcb6 610 math optional rlplot_0.99.14-1.dsc af5004de68548417cd60464b3ce24d18 372357 math optional rlplot_0.99.14.orig.tar.gz 3735cfb3a2618a027dd1c7e6b59e0f26 3741 math optional rlplot_0.99.14-1.diff.gz 2637804cacb98af4f892028a3c0172f9 771814 math optional rlplot_0.99.14-1_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQFCF0/zBEnrTWk1E4cRAjwOAJ9E8ewgTFnVDdVx+3TUE41fysCsQgCfVy4i U1j8GTxcKjLJzu9UfhtEIk8= =1Dlt -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]