Hi,

I am using Qt 4.4.3 on Windows CE 5.0. My application uses the QtWebkit modules. So far everything works fine right now, I managed to build the WebKit as well as Qt for Windows CE. Now I need SSL support for my application, so I tried building Qt with openssl support. I built the openssl libs for my platform successfully and linked them to the wcecompat lib for patching the stdio support and the missing headers.

My problem is now that when I am compiling Qt with openssl support (configure -openssl) it complains about the missing headers:

..\..\..\OpenSSL\include\openssl/err.h(87) : fatal error C1083: Cannot open include file: 'errno.h': No such file or directory
qsslsocket.cpp


But if I am including the path to the headers of the wcecompat lib (-I C:\wcecompat\include) which contains all the necessary ported headers for ce, it complains about redefinitions (for example of memcpy, etc.).

Has anyone built Qt for Win CE with openssl support successfully and give me a few hints how to manage that?

Thanks in advance for any help provided.

Jonas