Re: [Plib-users] Building PLIB on x86_64 (FC6)
Brought to you by:
sjbaker
|
From:
<coz...@gm...> - 2007-03-09 16:51:48
|
Hello Ed,
> All seems to build except ssgAux... I have included the output of the
> make at the end of this email.... I am really interested at this time
> only in the fnt lib. Do I really need ssgAux to use the fnt lib? If
> so, can someone tell me what the fix is to build ssgAux?
You do not need ssgAux for the fnt lib. However, the extra
qualification problem might be something like this:
class foo
{
int foo::do_stuff();
};
instead of
class foo
{
int do_stuff();
};
Just remove the <class name>:: part before the declarations on lines
107 and 195 of ssgaSky.h, and it should fix the problem. At least
that's how I have solved 'extra qualifications' problems before.
-Coz
|