I build OpenSSL static library successfully using "nmake -f ms\nt.mak".
Copy \include\openssl, libeay32.lib & ssleay32.lib to Qt folder.
When compile Qt, always get same error:
Qt Code:
  1. libeay32.lib(rand_win.obj) : error LNK2019: unresolved external symbol __imp__DeleteDC@4 referenced in function _readscreen
  2. libeay32.lib(rand_win.obj) : error LNK2019: unresolved external symbol __imp__DeleteObject@4 referenced in function _readscreen
  3. ...
To copy to clipboard, switch view to plain text mode 

My system envirement is VC 2008, Openssl_SRC_v0.9.8k & Qt_SRC_v4.5.3. Here is my configuration parameters for Qt:

configure.exe -static -release -qt-gif -qt-libjpeg -no-sql-sqlite -openssl-linked -webkit -qt-zlib -no-dbus -no-phonon -no-qt3support -no-accessibility -no-opengl -qt-style-windowsce

Any suggestion?