Greetings All,

I'm trying to embed the WebKit control into my app statically (i.e. no need for Qt/WebKit dlls).
I did the following:
0: I installed ActivePerl
1: Set environment variables
2: Configured Qt:
Qt Code:
  1. C:\Qt\4.6.2>configure -release -static -opensource -fast -exceptions -no-accessibility -rtti -no-stl -no-opengl -no-openvg -incredibuild-xge -no-style-motif -no-style-cde -no-style-windowsce -no-style-windowsmobile -no-style-s60 -qt-gif -qt-libpng -qt-libtiff -qt-libjpeg -qt-libmng -no-qt3support -no-openssl -no-dbus -platform win32-msvc2008 -arch windows -webkit -declarative
To copy to clipboard, switch view to plain text mode 
3: Opened projects.sln in MS VS 2008 and build in release mode

All went well, with some warnings but no errors.
However, when I try to build a Qt app that uses WebKit I get the following link errors:
Qt Code:
  1. 1> Creating library C:\Users\Geeko\Desktop\Qt\TestQ\Release\TestQ.lib and object C:\Users\Geeko\Desktop\Qt\TestQ\Release\TestQ.exp
  2.  
  3. 1>QtWebKit.lib(PluginPackageWin.obj) : error LNK2019: unresolved external symbol _VerQueryValueW@16 referenced in function "class WebCore::String __cdecl WebCore::getVersionInfo(void * const,class WebCore::String const &)" (?getVersionInfo@WebCore@@YA?AVString@1@QAXABV21@@Z)
  4.  
  5. 1>QtWebKit.lib(PluginPackageWin.obj) : error LNK2019: unresolved external symbol _GetFileVersionInfoW@16 referenced in function "private: bool __thiscall WebCore::PluginPackage::fetchInfo(void)" (?fetchInfo@PluginPackage@WebCore@@AAE_NXZ)
  6.  
  7. 1>QtWebKit.lib(PluginPackageWin.obj) : error LNK2019: unresolved external symbol _GetFileVersionInfoSizeW@8 referenced in function "private: bool __thiscall WebCore::PluginPackage::fetchInfo(void)" (?fetchInfo@PluginPackage@WebCore@@AAE_NXZ)
  8.  
  9. 1>QtWebKit.lib(PluginDatabaseWin.obj) : error LNK2019: unresolved external symbol _imp_PathRemoveFileSpecW@4 referenced in function "class WebCore::String __cdecl WebCore::safariPluginsDirectory(void)" (?safariPluginsDirectory@WebCore@@YA?AVString@1@XZ)
  10.  
  11. 1>QtWebKit.lib(PluginDatabaseWin.obj) : error LNK2019: unresolved external symbol _imp_SHGetValueW@24 referenced in function "void __cdecl WebCore::addWindowsMediaPlayerPluginDirectory(class WTF::Vector &)" (?addWindowsMediaPlayerPluginDirectory@WebCore@@YAXAAV?$Vector@VString@WebCore@@$0A@@WTF@@@Z)
  12.  
  13. 1>QtWebKit.lib(PluginDatabaseWin.obj) : error LNK2019: unresolved external symbol _imp_PathCombineW@12 referenced in function "void __cdecl WebCore::addMacromediaPluginDirectories(class WTF::Vector &)" (?addMacromediaPluginDirectories@WebCore@@YAXAAV?$Vector@VString@WebCore@@$0A@@WTF@@@Z)
  14.  
  15. 1>C:\Users\Geeko\Desktop\Qt\TestQ\Release\TestQ.exe : fatal error LNK1120: 6 unresolved externals
To copy to clipboard, switch view to plain text mode 
Any ideas how to solve this ?

Many thanks in advance.