Package: sndobj
Version: 2.6.1a-2
Severity: important

Your package fails to build with G++ 4.1.  I'm filing this bug as
important for now, but when 4.1 will be the default compiler in
unstable (probably in a few weeks) I'll upgrade this to serious.


> gcc -O2 -fPIC -I../include -DALSA -DJACK -c IFFT.cpp -o IFFT.o
> IFFT.h:51: error: extra qualification 'IFFT::' on member 'IFFT'
> IFFT.h:53: error: extra qualification 'IFFT::' on member 'IFFT'
> IFFT.h:54: error: extra qualification 'IFFT::' on member 'IFFT'
> make[2]: *** [IFFT.o] Error 1

Here's a partial patch but there are other errors later on which I
don't know how to fix.


--- ./build-tree/SndObj-2.6.1/src/IFFT.h~       2006-03-10 06:34:01.000000000 
+0000
+++ ./build-tree/SndObj-2.6.1/src/IFFT.h        2006-03-10 06:34:17.000000000 
+0000
@@ -48,10 +48,10 @@
 

 public:

 

-IFFT::IFFT();

-IFFT::IFFT(Table* window, SndObj* input, int fftsize = DEF_FFTSIZE, 

+IFFT();

+IFFT(Table* window, SndObj* input, int fftsize = DEF_FFTSIZE, 

                   int hopsize=DEF_VECSIZE, float sr=DEF_SR);

-IFFT::~IFFT();

+~IFFT();

 

 

        int GetFFTSize() { return m_fftsize; }

--- ./build-tree/SndObj-2.6.1/src/PVS.h~        2006-03-10 06:37:13.000000000 
+0000
+++ ./build-tree/SndObj-2.6.1/src/PVS.h 2006-03-10 06:37:24.000000000 +0000
@@ -27,10 +27,10 @@
 

 public:

 

-PVS::PVS();

-PVS::PVS(Table* window, SndObj* input, int fftsize=DEF_FFTSIZE,

+PVS();

+PVS(Table* window, SndObj* input, int fftsize=DEF_FFTSIZE,

                   int hopsize=DEF_VECSIZE, float sr=DEF_SR);

-PVS::~PVS();

+~PVS();

 

  

        int Set(char* mess, float value);


-- 
Martin Michlmayr
http://www.cyrius.com/


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

Reply via email to