Problem starting autogen.sh

I downloaded R tree from http://libspatialindex.github.com/

Since at startup. /autogen.sh I got the file / folder not found, so I downloaded the autogen.sh file from the github repository below:

https://raw.github.com/libspatialindex/libspatialindex/9a5a2f4d83c3ec7be4dbf2c8a86341703d837185/autogen.sh

Now that I run ./autogen.sh , I get "Permission denied" And if I run sh./autogen.sh , I get:

glibtoolize or libtoolize not found. Giving up!

Please suggest what should I do now

EDIT: Also I want to use libspatialindex inside my C ++ project. I am using netbeans. I mean, I want to use functions inside libspatialindex inside my netbeans project. How should I use the same. Now I run the configuration and make the command in a separate directory. I do not understand how to use them in my project.

+5
source share
2 answers

Install libtoolfrom the package manager.

+11
source

To fix the "Permission Denied" error, you need to edit the permissions of your autogen.sh file. Run this command: chmod +x autogen.sh

+3
source

All Articles