I read the other patch files, and they appear to be
lacking yet another problem (at least on my system).
An 'slist' is not part of the STL, so GNU moved it from
std:: to __gnu_cxx::, so all I had to do was change the:
using std::slist;
-to-
using __gnu_cxx::slist;
The other problem was the controller was missing a:
using std::find;
After fixing that stuff, everything worked beautifully.
The program is totally rad. See included patch. I'm
running LFS-4.0 with GCC-3.2. Hope this helps.
Patches mutella-0.4.1 for GCC-3.2 compilation