Thinking about it, it's possible your version of g++ isn't as lenient as the 4.6 dinosaur here. Perhaps the patch I've attached to this mail helps? Thanks, Tim [Tim Goetze] >Can you attach the output of the make command? I can't replicate the >error here. >[Julien Claassen] >> I'm sorry for a hasty send there. I already have a compilation error. It's >> all about click.cc. Starting in line 154. It seems, that you introduced a >> template <int waves>, but didn't specify the template parameter.
--- Click.cc 2013-01-16 13:34:37.000000000 +0100 +++ /home/tim/caps/Click.cc 2013-01-11 11:38:12.000000000 +0100 @@ -151,7 +151,7 @@ x = 0; } - initwave (0, click, n); + this->ClickStub::initwave (0, click, n); } /* using parfilt models to generate the click */ @@ -194,7 +194,7 @@ x = 0; } - initwave (1, click, n); + this->ClickStub::initwave (1, click, n); } void @@ -223,7 +223,7 @@ click[i] = (int16) (x); } - initwave (2, click, m); + this->ClickStub::initwave (2, click, m); } template <> void @@ -311,7 +311,7 @@ } #endif - initwave (0, wave, n-1); + this->ClickStub::initwave (0, wave, n-1); } template <> void @@ -343,7 +343,7 @@ { int16 * dirac = new int16[1]; *dirac = 32767; - initwave (0, dirac, 1); + this->ClickStub::initwave (0, dirac, 1); } template <> void
_______________________________________________ Linux-audio-user mailing list Linux-audio-user@xxxxxxxxxxxxxxxxxxxx http://lists.linuxaudio.org/listinfo/linux-audio-user