Hi all!
I'm trying to complie Qt4.4 with additional StlPort library. I managed to compile StlPort5.1.5 with MSVC 2005. Now, I'm trying to compilte Qt.
Here is my configuration command:

Qt Code:
  1. configure.exe -platform msvc-2005 -shared -direct3d -stl -qt-libjpeg -qt-libmng -IC:\Qt\stlport515\stlport -LC:\Qt\stlport515\lib -lstlport.5.1
To copy to clipboard, switch view to plain text mode 
Configuration is successful :-) But when I try to compile (using: nmake), I get bunch of errors while linking:

link /LIBPATH:"c:\Qt\4.4.3\lib" /LIBPATH:"c:\Qt\4.4.3\lib" /NOLOGO /BASE:0x67000000 /DEBUG /DLL /MANIFEST /MANIFESTFILE:"t
mp\obj\debug_shared\QtCored.intermediate.manifest" /VERSION:4.43 /OUT:..\..\lib\QtCored4.dll @C:\DOCUME~1\Syndis\USTAWI~1\Temp\nm2
CC.tmp
Creating library ..\..\lib\QtCored4.lib and object ..\..\lib\QtCored4.exp
QtCored_pch.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: unsigned short * __thiscall stlp_std::b
asic_string<unsigned short,class stlp_std::char_traits<unsigned short>,class stlp_std::allocator<unsigned short> >::begin(void)" (
__imp_?begin@?$basic_string@GV?$char_traits@G@stlp _std@@V?$allocator@G@2@@stlp_std@@QAEPAGXZ) referenced in function "public: clas
s stlp_std::basic_string<unsigned short,class stlp_std::char_traits<unsigned short>,class stlp_std::allocator<unsigned short> > __
thiscall QString::toStdWString(void)const " (?toStdWString@QString@@QBE?AV?$basic_string@GV?$c har_traits@G@stlp_std@@V?$allocator@
G@2@@stlp_std@@XZ)
There are more, still considering basic_string and allocator. What goes wrong? Is my STL missing something or the configuration for Qt is invalid? Something else?

Thanks for help,

hbrt