Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Neither libtoolize nor glibtoolize could be found

I'm trying to compile a .cpp file but I must install libssh2. I have downloaded the package from libssh2.org and when I enter: ./buildconf I'm getting:

Neither libtoolize nor glibtoolize could be found!

I don't know what to do, I have included in the header libssh2.h ( #include ) and also the file does exists in the same folder where I have the source file what I'm trying to compile.

like image 299
Zbarcea Christian Avatar asked Feb 25 '13 08:02

Zbarcea Christian


1 Answers

It is provided by the package libtool.

On Ubuntu you'd simply

sudo apt-get install libtool

see also http://manpages.ubuntu.com/manpages/dapper/man1/libtoolize.1.html

like image 119
jesper Avatar answered Oct 15 '22 18:10

jesper