Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trouble when running autogen.sh

Tags:

linux

bash

ubuntu

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

Since on running ./autogen.sh I was getting file/folder not found, therefore I downloaded the file autogen.sh from the github repository given below:

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

Now when I run ./autogen.sh I am getting "Permission denied" And if I run sh ./autogen.sh I am getting:

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 the functions inside libspatialindex inside my netbeans project. How should I use the same. Right now I have run the config and make command in a separate directory. I am not getting as to how to use them inside my project.

like image 664
user1778824 Avatar asked Feb 12 '13 21:02

user1778824


2 Answers

Install libtool from your package manager.

like image 109
that other guy Avatar answered Oct 22 '22 21:10

that other guy


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

like image 34
MollieVX Avatar answered Oct 22 '22 19:10

MollieVX