/usr/include/gcc/darwin/3.3/c++/bits/fpos.h:120: error: `mbstate_t' was not
declared in this scope
/usr/include/gcc/darwin/3.3/c++/bits/fpos.h:120: error: template argument 1 is
invalid
/usr/include/gcc/darwin/3.3/c++/bits/fpos.h:123: error: `mbstate_t' was not
declared in this scope
/usr/include/gcc/darwin/3.3/c++/bits/fpos.h:123: error: template argument 1 is
invalid
In file included from /usr/include/gcc/darwin/3.3/c++/ios:46,
from /usr/include/gcc/darwin/3.3/c++/ostream:45,
from ../../ptclib/asner.cxx:290:
/usr/include/gcc/darwin/3.3/c++/bits/char_traits.h:69: error: parse error
before `;' token
/usr/include/gcc/darwin/3.3/c++/bits/codecvt.h:215: error: invalid base-class
specification
/usr/include/gcc/darwin/3.3/c++/bits/codecvt.h:218: confused by earlier errors, bailing out
make[2]: *** [/Applications/pwlib/lib/obj_Darwin_ppc_r/asner.o] Error 1
make[1]: *** [opt] Error 2
make: *** [optshared] Error 2
This piece of output does not give enough information to guess the nature of the error. The real error came before that.
Two guesses:
1. If there was a message "file something.h not found", then either your include paths are incorrect or there is really something missing.
2. You are compiling code meant for gcc-3.1 with gcc-3.3, and you need to put
using namespace std;
at the right places. Or switch to gcc-3.1.
Have a look a Fink's pwlib package in the 10.2-gcc3.3 tree how they are doing it. It is possible that there is a reason why this package has not yet migrated to 10.3. You might want to contact its maintainer.
-- Martin
------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ Fink-beginners mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-beginners
