I compiled static Qt with static OpenSSL and now get following errors while compiling my project:
undefined reference to '_time32'
undefined reference to '_gmtime32'
undefined reference to '_localtime32'
I think I should add something in .pro file. Any ideas?
(compiler: TDM-GCC, os: win32)
SOLVED (see below)
Solution.
I compiled Qt and my project with TDM-GCC, but MSYS used another MinGW (to compile OpenSSL). To solve the problem I added the file
C:\msys\etc\fstabwith the following line:c:/qt/mingw32 /mingwQt, openSSL and my project have compiled successfully.