The title more or less describes the problem I'm having on my Ubuntu box. I followed the following steps in installing libssh2, as given in the instructions:
./configure make make check (all 3 tests passed) sudo make install (I have to use sudo due to permissions)
I then try to use some of the examples given in libssh2 page and they all have the following:
#include "libssh2_config.h"
Which isn't found. The following 3 files are created in usr/local/include:
libssh2.h
libssh2_publickey.h
libssh2_sftp.h
Is there anything I am doing wrong?
Thank you!