I am trying to build 32 bit Qt 4.8.6 libraries on Ubuntu 14.04. I have installed additional libraries
sudo apt-get install libx32gcc-4.8-dev
sudo apt-get install libc6-dev-i386
sudo apt-get install lib32z1
sudo apt-get install lib32ncurses5
sudo apt-get install lib32bz2-1.0
sudo apt-get install g++-multilib
and after I have made a configuration I run the build:
./configure -platform linux-g++-32
make
The build crashes with the following error:
In file included from /usr/include/openssl/asn1.h:63:0,
from ssl/qsslsocket_openssl_p.h:66,
from ssl/qsslsocket_openssl_symbols_p.h:57,
from ssl/qsslcertificate.cpp:110:
/usr/include/openssl/e_os2.h:56:33: fatal error: openssl/opensslconf.h: `No such file or directory`
#include <openssl/opensslconf.h>
^
compilation terminated.
I have the newest version of libssl-dev libraries. Please help me to fix this compilation issue.
libssl-dev:i386
is not satisfactory in terms of dependencies. – dobey Aug 18 '15 at 14:24