Your message dated Sun, 06 Nov 2005 08:46:55 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#265063: fixed in tse3 0.3.1-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; 11 Aug 2004 15:10:19 +0000
>From [EMAIL PROTECTED] Wed Aug 11 08:10:19 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c156124.adsl.hansenet.de (localhost) [213.39.156.124] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1Buuk7-0001Cz-00; Wed, 11 Aug 2004 08:10:19 -0700
Received: from aj by localhost with local (Exim 4.34)
        id 1Buuk6-00039D-2A; Wed, 11 Aug 2004 17:10:18 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: tse3: FTBFS with gcc-3.4: extra `;'
Message-Id: <[EMAIL PROTECTED]>
Date: Wed, 11 Aug 2004 17:10:18 +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: tse3
Severity: normal
Tags: patch

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

 g++ -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../src -fPIC -W -Wall -ansi 
-pedantic -Wp,-MD,.deps/Demidify.pp -c Demidify.cpp  -fPIC -DPIC -o 
.libs/Demidify.o
In file included from ../../../src/tse3/util/Demidify.h:20,
                 from Demidify.cpp:17:
../../../src/tse3/Midi.h:822: error: extra `;'
In file included from ../../../src/tse3/Song.h:22,
                 from Demidify.cpp:19:
../../../src/tse3/Notifier.h:293: error: extra `;'
../../../src/tse3/Notifier.h:370: error: using typedef-name 
`TSE3::Notifier<interface_type>::listener_type' after `class'
../../../src/tse3/Notifier.h:605: error: using typedef-name 
`TSE3::Listener<interface_type>::notifier_type' after `class'
make[5]: *** [Demidify.lo] Error 1
make[5]: Leaving directory `/tse3-0.2.7/src/tse3/util'

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/tse3-0.2.7/src/tse3/Midi.h ./src/tse3/Midi.h
--- ../tmp-orig/tse3-0.2.7/src/tse3/Midi.h      2002-07-28 17:17:07.000000000 
+0200
+++ ./src/tse3/Midi.h   2004-08-11 16:44:43.599893517 +0200
@@ -819,6 +819,6 @@
                 const MidiEvent &e1;
         };
     };
-};
+}
 
 #endif
diff -urN ../tmp-orig/tse3-0.2.7/src/tse3/Mutex.h ./src/tse3/Mutex.h
--- ../tmp-orig/tse3-0.2.7/src/tse3/Mutex.h     2002-07-28 17:17:08.000000000 
+0200
+++ ./src/tse3/Mutex.h  2004-08-11 17:03:51.918273593 +0200
@@ -315,7 +315,7 @@
 #endif
                 }
         };
-    };
+    }
 }
 
 #endif
diff -urN ../tmp-orig/tse3-0.2.7/src/tse3/Notifier.h ./src/tse3/Notifier.h
--- ../tmp-orig/tse3-0.2.7/src/tse3/Notifier.h  2002-08-20 16:59:15.000000000 
+0200
+++ ./src/tse3/Notifier.h       2004-08-11 16:56:32.127902621 +0200
@@ -290,7 +290,7 @@
                 const p4_type       &p4;                                 // (*)
         };
 
-    };
+    }
 
     /**************************************************************************
      * Public Notifier framework API
@@ -367,8 +367,6 @@
              */
             typedef Listener<interface_type> listener_type;
 
-            friend class listener_type;
-
         protected:
 
             /**
@@ -478,7 +476,7 @@
 
             unsigned int numListeners() const { return listeners.size(); }
 
-        private:
+        public:
 
             /**
              * Attach a listener to this Notifier object.
@@ -518,6 +516,7 @@
                 listeners.erase(listener);
             }
 
+        private:
             typedef Notifier<interface_type> self_type;
 
             Notifier(const self_type &);
@@ -602,8 +601,6 @@
                 if (notifiers.erase(notifier)) notifier->detach(this);
             }
 
-            friend class notifier_type;
-
         protected:
 
             /**
@@ -656,7 +653,7 @@
                 }
             }
 
-        private:
+public:
 
             /**
              * This is called by the corresponding @ref Notifier type's
@@ -674,6 +671,8 @@
                 this->Notifier_Deleted(src);
             }
 
+        private:
+
             typedef Listener<interface_type> self_type;
 
             Listener(const self_type &);
diff -urN ../tmp-orig/tse3-0.2.7/src/tse3/app/Application.h 
./src/tse3/app/Application.h
--- ../tmp-orig/tse3-0.2.7/src/tse3/app/Application.h   2002-07-28 
17:17:09.000000000 +0200
+++ ./src/tse3/app/Application.h        2004-08-11 17:03:37.463087524 +0200
@@ -35,12 +35,12 @@
     namespace Cmd
     {
         class CommandHistory;
-    };
+    }
 
     namespace Ins
     {
         class Destination;
-    };
+    }
 
     /**
      * The App namespace contains classes that use the @ref TSE3
diff -urN ../tmp-orig/tse3-0.2.7/src/tse3/app/Record.h ./src/tse3/app/Record.h
--- ../tmp-orig/tse3-0.2.7/src/tse3/app/Record.h        2002-07-28 
17:17:09.000000000 +0200
+++ ./src/tse3/app/Record.h     2004-08-11 17:03:25.327449946 +0200
@@ -36,7 +36,7 @@
     namespace Cmd
     {
         class CommandHistory;
-    };
+    }
 
     namespace App
     {
diff -urN ../tmp-orig/tse3-0.2.7/src/tse3/plt/Arts.cpp ./src/tse3/plt/Arts.cpp
--- ../tmp-orig/tse3-0.2.7/src/tse3/plt/Arts.cpp        2002-10-22 
15:16:45.000000000 +0200
+++ ./src/tse3/plt/Arts.cpp     2004-08-11 16:50:35.850280869 +0200
@@ -74,7 +74,7 @@
 
     ArtsCommon *artsCommon     = 0;
     int         artsCommonInit = 0;
-};
+}
 
 
 ArtsMidiScheduler::ArtsMidiScheduler()
diff -urN ../tmp-orig/tse3-0.2.7/src/tse3/util/MulDiv.h ./src/tse3/util/MulDiv.h
--- ../tmp-orig/tse3-0.2.7/src/tse3/util/MulDiv.h       2002-07-28 
17:17:13.000000000 +0200
+++ ./src/tse3/util/MulDiv.h    2004-08-11 16:46:49.553356897 +0200
@@ -34,7 +34,7 @@
          * @return val * num / div (which coped with integer overflows)
          */
         extern int muldiv(int val, int num, int div);
-    };
+    }
 }
 
 #endif

---------------------------------------
Received: (at 265063-close) by bugs.debian.org; 6 Nov 2005 16:52:43 +0000
>From [EMAIL PROTECTED] Sun Nov 06 08:52:43 2005
Return-path: <[EMAIL PROTECTED]>
Received: from joerg by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EYnfT-0001Zn-00; Sun, 06 Nov 2005 08:46:55 -0800
From: Daniel Burrows <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#265063: fixed in tse3 0.3.1-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Joerg Jaspert <[EMAIL PROTECTED]>
Date: Sun, 06 Nov 2005 08:46:55 -0800
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: tse3
Source-Version: 0.3.1-1

We believe that the bug you reported is fixed in the latest version of
tse3, which is due to be installed in the Debian FTP archive:

libtse3-0.3.1_0.3.1-1_i386.deb
  to pool/main/t/tse3/libtse3-0.3.1_0.3.1-1_i386.deb
libtse3-dev_0.3.1-1_i386.deb
  to pool/main/t/tse3/libtse3-dev_0.3.1-1_i386.deb
tse3_0.3.1-1.diff.gz
  to pool/main/t/tse3/tse3_0.3.1-1.diff.gz
tse3_0.3.1-1.dsc
  to pool/main/t/tse3/tse3_0.3.1-1.dsc
tse3_0.3.1.orig.tar.gz
  to pool/main/t/tse3/tse3_0.3.1.orig.tar.gz
tse3play_0.3.1-1_i386.deb
  to pool/main/t/tse3/tse3play_0.3.1-1_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.
Daniel Burrows <[EMAIL PROTECTED]> (supplier of updated tse3 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: Thu, 20 Oct 2005 15:10:52 -0700
Source: tse3
Binary: libtse3-dev tse3play libtse3-0.3.1
Architecture: source i386
Version: 0.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Burrows <[EMAIL PROTECTED]>
Changed-By: Daniel Burrows <[EMAIL PROTECTED]>
Description: 
 libtse3-0.3.1 - portable MIDI sequencer engine in C++ - development files
 libtse3-dev - portable MIDI sequencer engine in C++ - development files
 tse3play   - MIDI/TSE3MDL player/converter
Closes: 265063 299615 319794 325646
Changes: 
 tse3 (0.3.1-1) unstable; urgency=low
 .
   * New upstream release
 .
   * Acknowledge NMU (Closes: #265063).
 .
   * Clean up the description. (Closes: #325646)
 .
   * Fix debian/*.install to put the manpages in the right places.
     (Closes: #319794, #299615)
Files: 
 9a2d636688709e015c133df28baea79f 614 sound optional tse3_0.3.1-1.dsc
 3b7e35505160e2d761e5b43abb636f3c 755666 sound optional tse3_0.3.1.orig.tar.gz
 a00ea833917d72b8d2c3bd9ae93363c0 26847 sound optional tse3_0.3.1-1.diff.gz
 cc963072ba7ccc0ebe4a90b8bb4a53c8 484296 libs optional 
libtse3-0.3.1_0.3.1-1_i386.deb
 82324c443ab6794b9510f0dce134c67a 1257226 libdevel optional 
libtse3-dev_0.3.1-1_i386.deb
 d3e695308a252b955ca626a2952d54ff 71622 sound optional tse3play_0.3.1-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDWCjHch6xsM7kSXgRAm4WAJ9a2fqhCoqueaN6MuTyFeitnET7RACfYGHT
pP1PjtOV8BiRXbQMsNJe+Z8=
=wZWN
-----END PGP SIGNATURE-----


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

Reply via email to