Your message dated Wed, 14 Sep 2005 17:17:05 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#327362: fixed in tcm 2.20+TSQD-2 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; 9 Sep 2005 14:24:04 +0000 >From [EMAIL PROTECTED] Fri Sep 09 07:24:04 2005 Return-path: <[EMAIL PROTECTED]> Received: from c129218.adsl.hansenet.de (localhost.localdomain) [213.39.129.218] by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1EDjnP-0006FH-00; Fri, 09 Sep 2005 07:24:03 -0700 Received: from aj by localhost.localdomain with local (Exim 4.52) id 1EDjnO-0003BU-6E; Fri, 09 Sep 2005 16:24:02 +0200 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: tcm: FTBFS: 'MainWindow' has not been declared Message-Id: <[EMAIL PROTECTED]> Date: Fri, 09 Sep 2005 16:24:02 +0200 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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02 Package: tcm Version: 2.20+TSQD-1 Severity: serious Tags: patch When building 'tcm' on unstable, I get the following error: make[3]: Entering directory `/tcm-2.20+TSQD/src/ui' /usr/bin/g++ -Wall -g -O2 -DCONFIG_INSTALL=\"/etc/tcm/\" -DTCM_INSTALL_DIR=\"/usr\" -DTCM_INSTALL_LIB=\"/usr/lib/\" -DTCM_INSTALL_SHARE=\"/usr/share/doc/tcm-doc/\" -DCONFIG_FILE=\"tcm.conf\" -DHELP_DIR=\"/usr/share/doc/tcm-doc/help/\" -DCOLOR_FILE=\"colorrgb.txt\" -DBANNER_FILE=\"banner.ps\" -I. -I/tcm-2.20+TSQD/src/bitmaps -I/tcm-2.20+TSQD/src/gl -I/tcm-2.20+TSQD/src/ui -I/tcm-2.20+TSQD/src/ed -I/tcm-2.20+TSQD/src/dg -I/tcm-2.20+TSQD/src/tb -I/usr/X11R6/LessTif/Motif1.2/include -I/usr/X11R6/include -I/usr/X11R6/include/X11 -I../dv -DLINUX -c application.c application.h:56: error: 'MainWindow' has not been declared With the attached patch 'tcm' can be compiled on unstable. Regards Andreas Jochens diff -urN ../tmp-orig/tcm-2.20+TSQD/src/sd/dv/erdiagram.c ./src/sd/dv/erdiagram.c --- ../tmp-orig/tcm-2.20+TSQD/src/sd/dv/erdiagram.c 2004-07-21 17:52:21.000000000 +0000 +++ ./src/sd/dv/erdiagram.c 2005-09-09 14:14:16.000000000 +0000 @@ -43,6 +43,9 @@ #include "replacedialog.h" #include "erdiagram.h" #include "menu.h" + +class Edge; +class C1Edge; ERDiagram::ERDiagram(Config *c, ERWindow *d, ERViewer *v, ERGraph *g): Diagram(c,d,v,g) { diff -urN ../tmp-orig/tcm-2.20+TSQD/src/sd/dv/function.h ./src/sd/dv/function.h --- ../tmp-orig/tcm-2.20+TSQD/src/sd/dv/function.h 2004-07-21 17:52:29.000000000 +0000 +++ ./src/sd/dv/function.h 2005-09-09 14:15:06.000000000 +0000 @@ -19,8 +19,8 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA // 02111-1307, USA. //----------------------------------------------------------------------------- -#ifndef _FUNCTION_H -#define _FUNCTION_H +#ifndef _FUNCTION_CLASS_H +#define _FUNCTION_CLASS_H #include "c1edge.h" class ERGraph; diff -urN ../tmp-orig/tcm-2.20+TSQD/src/ui/application.h ./src/ui/application.h --- ../tmp-orig/tcm-2.20+TSQD/src/ui/application.h 2004-07-21 17:47:56.000000000 +0000 +++ ./src/ui/application.h 2005-09-09 14:08:24.000000000 +0000 @@ -28,6 +28,7 @@ class PrinterOptions; class Color; class Config; +class MainWindow; /// generic window-based application class. See: MWidget. class Application: public MWidget { diff -urN ../tmp-orig/tcm-2.20+TSQD/src/ui/menu.c ./src/ui/menu.c --- ../tmp-orig/tcm-2.20+TSQD/src/ui/menu.c 2004-07-21 17:47:54.000000000 +0000 +++ ./src/ui/menu.c 2005-09-09 14:08:24.000000000 +0000 @@ -217,7 +217,7 @@ XmNindicatorType, XmONE_OF_MANY, 0); } // selected or not ? - if ((int)items[i].userData & 0x1) + if ((long)items[i].userData & 0x1) XtVaSetValues(submenu, XmNset, True, 0); } --------------------------------------- Received: (at 327362-close) by bugs.debian.org; 15 Sep 2005 00:18:34 +0000 >From [EMAIL PROTECTED] Wed Sep 14 17:18:34 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1EFhR3-0005Og-00; Wed, 14 Sep 2005 17:17:05 -0700 From: Otavio Salvador <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#327362: fixed in tcm 2.20+TSQD-2 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Wed, 14 Sep 2005 17:17:05 -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 X-CrossAssassin-Score: 4 Source: tcm Source-Version: 2.20+TSQD-2 We believe that the bug you reported is fixed in the latest version of tcm, which is due to be installed in the Debian FTP archive: tcm-doc_2.20+TSQD-2_all.deb to pool/main/t/tcm/tcm-doc_2.20+TSQD-2_all.deb tcm_2.20+TSQD-2.diff.gz to pool/main/t/tcm/tcm_2.20+TSQD-2.diff.gz tcm_2.20+TSQD-2.dsc to pool/main/t/tcm/tcm_2.20+TSQD-2.dsc tcm_2.20+TSQD-2_powerpc.deb to pool/main/t/tcm/tcm_2.20+TSQD-2_powerpc.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. Otavio Salvador <[EMAIL PROTECTED]> (supplier of updated tcm 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: Wed, 14 Sep 2005 20:17:10 -0300 Source: tcm Binary: tcm-doc tcm Architecture: source powerpc all Version: 2.20+TSQD-2 Distribution: unstable Urgency: low Maintainer: Otavio Salvador <[EMAIL PROTECTED]> Changed-By: Otavio Salvador <[EMAIL PROTECTED]> Description: tcm - Toolkit for Conceptual Modeling (TCM) tcm-doc - Documentation for Toolkit for Conceptual Modeling (TCM) Closes: 305111 320336 322336 327362 Changes: tcm (2.20+TSQD-2) unstable; urgency=low . * Ack previous NMU. (Closes: #327362, #320336) * Add build-depends of libxau-dev. Fix FTBFS on arm. * Fix a spelling error no menu file. (Closes: #305111) * Bumb Standards-Version to 3.6.2. No changes need. * Convert previous patches to: - 15_fix_gcc_4_0.dpatch: fix issues while building with gcc 4.0; - 16_gv_preview.dpatch: fix gv params; * Remove 14_fix_gcc_3_4.dpatch since 15_fix_gcc_4_0.dpatch replace it; * Add 20_fix_doc.dpatch: Remove wrong links from docs. (Closes: #322336) Files: 9b1b18aaa0446bf103d339be34052626 631 graphics optional tcm_2.20+TSQD-2.dsc 214913a5f072dbdf8e336ef0773d4448 42723 graphics optional tcm_2.20+TSQD-2.diff.gz c43750e20e142e05733b8781639057d7 3010170 doc optional tcm-doc_2.20+TSQD-2_all.deb eb2d1f46b93c5653af037931a09501a6 1150102 graphics optional tcm_2.20+TSQD-2_powerpc.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDKLpPLqiZQEml+FURAuv/AKC+/lTJjE2gVBIhcqJLAJM4TTTdlgCdE5Q6 iaMol7qGtIfpAUT91CmzYQU= =Vb9c -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]