--- In blassic@yahoogroups.com, "ewhite88" <ewhite20@l...> wrote:
> i get the following:
> gencharset.cpp:8: sstream: No such file or directory
> gencharset.cpp:12: bitset: No such file or directory
> make: *** [gencharset-gencharset.o] Error 1
>
> these are missing include headers, but i don't know what package they
> are part of. the package must not be on my system. anyone know?
What compiler are you using? In old versions of gcc there were no sstream
header. In the gcc web site there is one that can be used with this versions,
see this:
http://gcc.gnu.org/faq.html#2.95sstream
All you need is to download the code and put it in /usr/include/g++
I don't know if ther is a similar solution for bitset. Anyway, it is only used
in
gencharset, and you don't need gencharset if you do not modify the
character set. Simply do 'touch gencharset-gencharset.o ; touch gencharset
; touch charset.cpp' and make will be happy.
But perhaps with an old gcc other problemas appear later, the best
solution is to upgrade to a recent version of gcc, if you can.
Sorry for the delay, I was on holidays.
Regards.