On Sat, Oct 24, 2009 at 09:43, Pavel Heimlich <tropikhajma at gmail.com> wrote: > Hi, > kdebindings-4.3.72 fail with > ... > "/export/home/hajma/packages/BUILD/kdebindings-4.3.72svn1035674/generator/parser/parser.h", > line 36: Error: Could not open include file<ext/hash_map>. > ... > as far as I learned, having it would require compiling with library=stlport4 > and that might not go very well with stdcxx. A solution might be pasting an > implementation of hash_map from somewhere else. > > Am I right? Or is there other way?
1. stlport4 will not work with stdcxx. 2. hash_map is not part of th C++ Standard. whatever use hash_map has in that file, it should be replaced with std::map. --Stefan -- Stefan Teleman KDE e.V. stefan.teleman at gmail.com
