0

I have the same problem as in Compile failure for Boost SSL. However I was not able to resolve it from the answer provided. I have openssl installed in my Ubuntu14 system. The IDE used is kDevelop.

Can anyone please help me.

Community
  • 1
  • 1
Jackzz
  • 1,417
  • 4
  • 24
  • 53

1 Answers1

3

Install libssl-dev package:

sudo apt-get install libssl-dev

In future, please search headers you need by packages.ubuntu.com resource.

VP.
  • 15,509
  • 17
  • 91
  • 161
  • I installed in the same way – Jackzz Jan 22 '15 at 06:25
  • What is the output of `locate openssl/conf.h` then ? – VP. Jan 22 '15 at 06:27
  • /home/MYPC/openssl-1.0.1j/include/openssl/conf.h /usr/local/openssl/include/openssl/conf.h – Jackzz Jan 22 '15 at 06:28
  • You installed it in the wrong path: it should be in `/usr/include/` or `/usr/local/include`, or any other system includepath. Specially for this case with openssl you may move or copy files from `/usr/local/openssl/include/openssl` to `/usr/include/openssl` and it will solve your problem. – VP. Jan 22 '15 at 06:36