0

I'm trying to install this version the open-iSCSI Initiator, however when I use the make command, it doesn't find the openssl/evp.h file, but I have the openssl package installed, so I don't get it. What should I do?

Thanks

William Studart
  • 321
  • 1
  • 3
  • 12

1 Answers1

3

That file isn't part of the openssl package. It's provided by libssl-dev:

sudo apt-get install libssl-dev

It's common in Ubuntu and similar Linux distributions for applications and development libraries/headers to be in different packages. (If you're just going to be using the ssh command or running an ssh server, you don't need the header files.)

Keith Thompson
  • 254,901
  • 44
  • 429
  • 631