Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

cannot find ssl libraries?

I am trying to install nrpe plugin on ubuntu 12.04, however I am facing issue with ssl libraries. I tried installing "libcurl3-openssl-dev" package, however when I try to compile nrpe plugin after installing this package I am facing issue saying "cannot find ssl libraries".

Could anyone please shade some light on this?

Thanking you,

Regards, Gaurav.

like image 706
user2614425 Avatar asked Jul 24 '13 11:07

user2614425


1 Answers

If you're running on 64-bit:

./configure --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib/x86_64-linux-gnu

For whatever reason the configure script for nrpe doesn't seem to be able to find where libssl-dev installs the libraries. You can find where Ubuntu puts them with

apt-file list libssl-dev
like image 130
Paul Kehrer Avatar answered Sep 30 '22 06:09

Paul Kehrer