Your message dated Sun, 11 Sep 2005 18:17:41 +0200
with message-id <[EMAIL PROTECTED]>
and subject line FTBFS applied to kdevelop2 which was dropped as of sarge
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; 30 Jul 2004 07:19:09 +0000
>From [EMAIL PROTECTED] Fri Jul 30 00:19:09 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c219002.adsl.hansenet.de (localhost) [213.39.219.2] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1BqRfY-0004b0-00; Fri, 30 Jul 2004 00:19:08 -0700
Received: from aj by localhost with local (Exim 4.34)
        id 1BqRfV-0002oO-Ua; Fri, 30 Jul 2004 09:19:05 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: kdevelop: FTBFS with gcc-3.4: extra `;'
Message-Id: <[EMAIL PROTECTED]>
Date: Fri, 30 Jul 2004 09:19:05 +0200
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: kdevelop
Severity: normal
Tags: patch

When building 'kdevelop' with gcc-3.4 I get the following error:

cd ../.. && /bin/sh ./config.status kdevelop/classparser/Makefile depfiles
config.status: creating kdevelop/classparser/Makefile
config.status: executing depfiles commands
make[4]: Leaving directory `/kdevelop-2.1.5.1/kdevelop/classparser'
make[4]: Entering directory `/kdevelop-2.1.5.1/kdevelop/classparser'
source='tokenizer.cc' object='tokenizer.o' libtool=no \
depfile='.deps/tokenizer.Po' tmpdepfile='.deps/tokenizer.TPo' \
depmode=gcc3 /bin/sh ../../admin/depcomp \
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/include/kde -I/usr/include/qt3 -I.   
-DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef 
-Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi 
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG 
-O2 -ftemplate-depth-99 -fno-exceptions -fno-check-new -ftemplate-depth-99  -c 
-o tokenizer.o `test -f 'tokenizer.cc' || echo './'`tokenizer.cc
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for 
Ada/C/ObjC/Pascal but not for C++
./tokenizer.l:185: error: extra `;'
make[4]: *** [tokenizer.o] Error 1
make[4]: Leaving directory `/kdevelop-2.1.5.1/kdevelop/classparser'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/kdevelop-2.1.5.1/kdevelop'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/kdevelop-2.1.5.1'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/kdevelop-2.1.5.1'
make: *** [build-stamp] Error 2

With the attached patch 'kdevelop' can be compiled using gcc-3.4.

Regards
Andreas Jochens

diff -urN ../tmp-orig/kdevelop-2.1.5.1/kdevelop/classparser/tokenizer.cc 
./kdevelop/classparser/tokenizer.cc
--- ../tmp-orig/kdevelop-2.1.5.1/kdevelop/classparser/tokenizer.cc      
2004-07-29 23:19:33.289428849 +0200
+++ ./kdevelop/classparser/tokenizer.cc 2004-07-29 22:57:32.285301302 +0200
@@ -2252,7 +2252,7 @@
 {
   char *text=lex->getText();
   comment+=text;
-};
+}
 
 bool endComment(MyLexer *lex)
 {
diff -urN ../tmp-orig/kdevelop-2.1.5.1/kdevelop/classparser/tokenizer.l 
./kdevelop/classparser/tokenizer.l
--- ../tmp-orig/kdevelop-2.1.5.1/kdevelop/classparser/tokenizer.l       
2004-07-29 23:19:33.285429623 +0200
+++ ./kdevelop/classparser/tokenizer.l  2004-07-29 22:57:25.230668135 +0200
@@ -181,7 +181,7 @@
 {
   char *text=lex->getText();
   comment+=text;
-};
+}
 
 bool endComment(MyLexer *lex)
 {
diff -urN 
../tmp-orig/kdevelop-2.1.5.1/kdevelop/widgets/qextmdi/include/qextmdidefines.h 
./kdevelop/widgets/qextmdi/include/qextmdidefines.h
--- 
../tmp-orig/kdevelop-2.1.5.1/kdevelop/widgets/qextmdi/include/qextmdidefines.h  
    2001-12-03 10:03:27.000000000 +0100
+++ ./kdevelop/widgets/qextmdi/include/qextmdidefines.h 2004-07-29 
23:09:01.613706034 +0200
@@ -88,7 +88,7 @@
       TabPageMode    = 2
    };
 
-}; //namespace
+} //namespace
 
 
 //----------------------------------------------------------------------------
diff -urN 
../tmp-orig/kdevelop-2.1.5.1/kdevelop/widgets/qextmdi/src/qextmdimainfrm.cpp 
./kdevelop/widgets/qextmdi/src/qextmdimainfrm.cpp
--- 
../tmp-orig/kdevelop-2.1.5.1/kdevelop/widgets/qextmdi/src/qextmdimainfrm.cpp    
    2002-07-19 00:23:33.000000000 +0200
+++ ./kdevelop/widgets/qextmdi/src/qextmdimainfrm.cpp   2004-07-29 
23:09:59.246533292 +0200
@@ -1868,7 +1868,7 @@
    if (m_pTaskBar)
       m_pTaskBar->close();
    m_pTaskBar = 0L;
-};
+}
 
 void QextMdiMainFrm::closeViewButtonPressed()
 {
diff -urN ../tmp-orig/kdevelop-2.1.5.1/kdevelop/wzconnectdlgimpl.h 
./kdevelop/wzconnectdlgimpl.h
--- ../tmp-orig/kdevelop-2.1.5.1/kdevelop/wzconnectdlgimpl.h    2001-11-21 
02:28:21.000000000 +0100
+++ ./kdevelop/wzconnectdlgimpl.h       2004-07-29 23:14:35.102112606 +0200
@@ -76,7 +76,7 @@
   /**  */
   void setSigTabAttrList ( QList<CParsedAttribute> *AttrList );
   /**  */
-  void setClass ( CParsedClass* aClass );;
+  void setClass ( CParsedClass* aClass );
   void setStore ( CClassStore* s) { store = s; }
   void init();
   /** This function tries guess if aName is a QT or a KDE class then set 
filename of the include file according to the classname.

---------------------------------------
Received: (at 262215-done) by bugs.debian.org; 11 Sep 2005 16:17:41 +0000
>From [EMAIL PROTECTED] Sun Sep 11 09:17:41 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp1-g19.free.fr [212.27.42.27] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1EEUWT-0002A4-00; Sun, 11 Sep 2005 09:17:41 -0700
Received: from sharky.jerryweb.org (vau75-7-82-234-248-119.fbx.proxad.net 
[82.234.248.119])
        by smtp1-g19.free.fr (Postfix) with ESMTP id 3A6DF2DDF7
        for <[EMAIL PROTECTED]>; Sun, 11 Sep 2005 18:17:40 +0200 (CEST)
Received: from localhost (localhost [127.0.0.1])
        by sharky.jerryweb.org (Postfix) with ESMTP id 31639E7214
        for <[EMAIL PROTECTED]>; Sun, 11 Sep 2005 18:17:42 +0200 (CEST)
Received: from sharky.jerryweb.org ([127.0.0.1])
        by localhost (sharky [127.0.0.1]) (amavisd-new, port 10024)
        with ESMTP id 03720-05 for <[EMAIL PROTECTED]>;
        Sun, 11 Sep 2005 18:17:42 +0200 (CEST)
Received: by sharky.jerryweb.org (Postfix, from userid 109)
        id 189FDE72EB; Sun, 11 Sep 2005 18:17:42 +0200 (CEST)
Received: from [127.0.0.1] (localhost [127.0.0.1])
        by sharky.jerryweb.org (Postfix) with ESMTP id D5831E7214
        for <[EMAIL PROTECTED]>; Sun, 11 Sep 2005 18:17:41 +0200 (CEST)
Message-ID: <[EMAIL PROTECTED]>
Date: Sun, 11 Sep 2005 18:17:41 +0200
From: =?ISO-8859-1?Q?Jeremy_Lain=E9?= <[EMAIL PROTECTED]>
User-Agent: Debian Thunderbird 1.0.6 (X11/20050802)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: [EMAIL PROTECTED]
Subject: FTBFS applied to kdevelop2 which was dropped as of sarge
X-Enigmail-Version: 0.92.0.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=0.96.1
X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at sharky.jerryweb.org
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=-1.4 required=4.0 tests=BAYES_00,UPPERCASE_25_50 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Bug 262215 applied to kdevelop2, not to kdevelop3 which compiles fine
with gcc-3.4.

Kind regards,
Jeremy

- --
http://www.jerryweb.org/             : JerryWeb.org
http://sailcut.sourceforge.net/      : Sailcut CAD
http://opensource.polytechnique.org/ : Polytechnique.org Free Software
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDJFik4mJJZqJp2ScRAm+YAKCe9VkvKKRpUdy9QD9rbNt9W9JmmQCfVynt
uvHsBUPv7KA/JVZ2Esf3+vI=
=uhEK
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to