2006/10/31, Ken Moffat <[EMAIL PROTECTED]>:
On Tue, Oct 31, 2006 at 04:04:26PM +0000, Alan Lord wrote:
> configure works but make crashes out with:
> modules/filter/nroff.cpp:76: error: extra qualification
> '<unnamed>::NroffFilter::' on member 'process_char'
> make[1]: *** [modules/filter/nroff.lo] Error 1
> make[1]: Leaving directory `/root/build/aspell-0.60.4'
> make: *** [all-recursive] Error 1
>
> A quick google showed this small fix:
> http://mail-index.netbsd.org/pkgsrc-bugs/2006/06/10/0033.html
>
> I tried it and it seems to fix the problem...
>
I've been doing the same thing since April with

sed -i '/;/ s,NroffFilter::,,' modules/filter/nroff.cpp

but I can't see any notes about where I got it from, so I'll credit
Andy's entry in the blfs wiki :)

ĸen
--
das eine Mal als Tragödie, das andere Mal als Farce
--
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Extra qualification errors are common with gcc4. This means a class is redundantly mentioned with a class function. Just remove the part before :: on the mentioned line


-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to