Your message dated Wed, 28 Dec 2005 08:28:43 +0100 with message-id <[EMAIL PROTECTED]> and subject line hitop: FTBFS 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 Sep 2004 15:51:05 +0000 >From [EMAIL PROTECTED] Thu Sep 30 08:51:05 2004 Return-path: <[EMAIL PROTECTED]> Received: from d052140.adsl.hansenet.de (localhost.localdomain) [80.171.52.140] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CD3Cy-0003PE-00; Thu, 30 Sep 2004 08:51:04 -0700 Received: from aj by localhost.localdomain with local (Exim 4.34) id 1CD3Du-0005qe-Ku; Thu, 30 Sep 2004 17:52:02 +0200 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: hitop: FTBFS with gcc-3.4: extra ';' and libpq++.h does not exist Message-Id: <[EMAIL PROTECTED]> Date: Thu, 30 Sep 2004 17:52:02 +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: hitop Severity: normal Tags: patch When building 'hitop' with gcc-3.4 I get the following error: dpkg-source: building hitop in hitop_0.36-3.1.diff.gz dpkg-source: building hitop in hitop_0.36-3.1.dsc debian/rules build test -d debian/patched || install -d debian/patched dpatch apply-all applying patch 01_makefile to ./ ... ok. applying patch 02_gcc33 to ./ ... ok. applying patch 03_remove_pgsql to ./ ... ok. dpatch cat-all >>patch-stampT mv -f patch-stampT patch-stamp dh_testdir # We might strip later if dh_strip thinks that's wise /usr/bin/make CFLAGS="-Wall -g -pedantic -O3" STRIP=/bin/true make[1]: Entering directory `/hitop-0.36' Remaking the file dependancies /usr/bin/g++ -MM *.cc plugins/*.cc tables/*.cc> Make.dependancies plugins/pgsql.cc:23:21: libpq++.h: No such file or directory make[1]: *** [Make.dependancies] Error 1 make[1]: Leaving directory `/hitop-0.36' make: *** [build-stamp] Error 2 With the attached patch 'hitop' can be compiled using gcc-3.4. Regards Andreas Jochens diff -urN ../tmp-orig/hitop-0.36/hitoplive.cc ./hitoplive.cc --- ../tmp-orig/hitop-0.36/hitoplive.cc 2002-12-30 20:26:37.000000000 +0100 +++ ./hitoplive.cc 2004-09-30 17:45:46.677486512 +0200 @@ -211,7 +211,7 @@ begin=end; } Main->SetVar(string("COOKIE_")+string(startofname,endofname),string(startofval,endofval),Vars::Global); -}; +} static void DoCookies(HTMLStream *Main) { char* ccookies = getenv("HTTP_COOKIE"); diff -urN ../tmp-orig/hitop-0.36/navstore.cc ./navstore.cc --- ../tmp-orig/hitop-0.36/navstore.cc 2001-04-24 09:53:54.000000000 +0200 +++ ./navstore.cc 2004-09-30 17:45:13.624511328 +0200 @@ -145,7 +145,7 @@ } -void NavStore::DefaultOpenPre(HTMLStream& stream,HTMLStream::iterator Cur,int level) {}; +void NavStore::DefaultOpenPre(HTMLStream& stream,HTMLStream::iterator Cur,int level) {} void NavStore::DefaultOpenEntry(HTMLStream& stream,HTMLStream::iterator Cur,int level,bool last) { string Text; @@ -158,20 +158,20 @@ stream.m_stream.insert(Cur,HTML(false,m_title)); if (!m_open) stream.m_stream.insert(Cur,HTML(true,"/A")); stream.m_stream.insert(Cur,HTML(true,"BR")); -}; +} -void NavStore::DefaultOpenPost(HTMLStream& stream,HTMLStream::iterator Cur,int level) {}; +void NavStore::DefaultOpenPost(HTMLStream& stream,HTMLStream::iterator Cur,int level) {} -void NavStore::DefaultFlatPre(HTMLStream& stream,HTMLStream::iterator Cur,int level) {}; +void NavStore::DefaultFlatPre(HTMLStream& stream,HTMLStream::iterator Cur,int level) {} void NavStore::DefaultFlatEntry(HTMLStream& stream,HTMLStream::iterator Cur,int level,bool last) { if (!m_open) stream.m_stream.insert(Cur,HTML(true,"A HREF=\""+m_url+"\"")); stream.m_stream.insert(Cur,HTML(false,m_title)); if (!m_open) stream.m_stream.insert(Cur,HTML(true,"/A")); if (!last) stream.m_stream.insert(Cur,HTML(false," | ")); -}; +} void NavStore::DefaultFlatPost(HTMLStream& stream,HTMLStream::iterator Cur,int level) { stream.m_stream.insert(Cur,HTML(true,"BR")); -}; +} diff -urN ../tmp-orig/hitop-0.36/plugins/calendar.cc ./plugins/calendar.cc --- ../tmp-orig/hitop-0.36/plugins/calendar.cc 2001-04-26 17:25:56.000000000 +0200 +++ ./plugins/calendar.cc 2004-09-30 17:46:01.761193440 +0200 @@ -22,7 +22,7 @@ dsoCalMod::dsoCalMod() { RegisterPlugin("calendar",1); -}; +} void dsoCalMod::Init() { Plugin::SetNamespace("CALENDAR"); diff -urN ../tmp-orig/hitop-0.36/plugins/notify.cc ./plugins/notify.cc --- ../tmp-orig/hitop-0.36/plugins/notify.cc 2002-12-30 20:07:36.000000000 +0100 +++ ./plugins/notify.cc 2004-09-30 17:46:51.648609400 +0200 @@ -36,7 +36,7 @@ dsoNotifyMod::dsoNotifyMod() { RegisterPlugin("notify",1); -}; +} void dsoNotifyMod::Init() { SetNamespace("NOTIFY"); diff -urN ../tmp-orig/hitop-0.36/plugins/pgsql.cc ./plugins/pgsql.cc --- ../tmp-orig/hitop-0.36/plugins/pgsql.cc 2002-12-02 00:32:21.000000000 +0100 +++ ./plugins/pgsql.cc 2004-09-30 17:44:16.597180800 +0200 @@ -20,7 +20,6 @@ #include <string> #include <vector> #include <algorithm> -#include <libpq++.h> class dsoDBpgsqlMod :public Plugin{ public: diff -urN ../tmp-orig/hitop-0.36/plugins/scheduler.cc ./plugins/scheduler.cc --- ../tmp-orig/hitop-0.36/plugins/scheduler.cc 2001-04-26 17:25:56.000000000 +0200 +++ ./plugins/scheduler.cc 2004-09-30 17:46:38.133663984 +0200 @@ -53,7 +53,7 @@ dsoSchedMod::dsoSchedMod() { RegisterPlugin("scheduler",1); -}; +} void dsoSchedMod::Init() { SetNamespace("SCHEDULER"); --------------------------------------- Received: (at 274248-done) by bugs.debian.org; 28 Dec 2005 07:28:52 +0000 >From [EMAIL PROTECTED] Tue Dec 27 23:28:52 2005 Return-path: <[EMAIL PROTECTED]> Received: from e176043018.adsl.alicedsl.de ([85.176.43.18] helo=kat.ainf.net) by spohr.debian.org with esmtp (Exim 4.50) id 1ErVjw-00025v-Kb for [EMAIL PROTECTED]; Tue, 27 Dec 2005 23:28:52 -0800 Received: from aj by kat.ainf.net with local (Exim 4.54) id 1ErVjn-0008Im-SP; Wed, 28 Dec 2005 08:28:43 +0100 To: [EMAIL PROTECTED] From: Andreas Jochens <[EMAIL PROTECTED]> Subject: hitop: FTBFS Message-Id: <[EMAIL PROTECTED]> Date: Wed, 28 Dec 2005 08:28:43 +0100 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 X-CrossAssassin-Score: 21 The package has been removed from unstable. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]