Я пытаюсь создать демона, похожего на биткойны, в своей Ubuntu 14.04.3.
Когда я нажму ./configure
:
checking for SSL... no
configure: error: openssl not found.
но
# apt-get install libssl-dev linux-headers-$(uname -r)
Reading package lists... Done
Building dependency tree
Reading state information... Done
libssl-dev is already the newest version.
linux-headers-3.13.0-61-generic is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Я погуглил сообщение об ошибке, но понятия не имею, что делать. Я успешно создал этот демон на другом Ubuntu 14.04, поэтому исходные тексты и сценарии настройки хороши.
UPD1. Установка openssl не помогла:
# apt-get install openssl
..
openssl is already the newest version.
..
Я проверил config.log, и в конце ничего не говорится об openssl - HAVE_WORKING_BOOST_SLEEP_FOR
относится к checking for dynamic linked boost test... yes
- последняя успешная строка из ./configure
output:
# tail config.log
#define HAVE_BOOST /**/
#define HAVE_BOOST_SYSTEM /**/
#define HAVE_BOOST_FILESYSTEM /**/
#define HAVE_BOOST_PROGRAM_OPTIONS /**/
#define HAVE_BOOST_THREAD /**/
#define HAVE_BOOST_CHRONO /**/
#define HAVE_BOOST_UNIT_TEST_FRAMEWORK /**/
#define HAVE_WORKING_BOOST_SLEEP_FOR 1
configure: exit 1
UPD2. Я нашел это в журнале, довольно далеко от конца:
configure:25626: checking for SSL
configure:25633: $PKG_CONFIG --exists --print-errors "libssl"
Package libssl was not found in the pkg-config search path.
Perhaps you should add the directory containing `libssl.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libssl' found
configure:25636: $? = 1
configure:25650: $PKG_CONFIG --exists --print-errors "libssl"
Package libssl was not found in the pkg-config search path.
Perhaps you should add the directory containing `libssl.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libssl' found
configure:25653: $? = 1
configure:25667: result: no
No package 'libssl' found
configure:25683: error: openssl not found.