Can not run configure command: "No such file or directory"
If the file is called configure.ac,
do $> autoconf
Depends: M4, Automake
If you're not sure what to do,
try $> cat readme
They must mean that you use "autoconf" to generate an executable "configure" file.
So the order is:
$> autoconf
$> ./configure
$> make
$> make install
The failsafe for generating a configure script is autoreconf -i
, which not only takes care of calling autoconf
itself, but also a host of other tools that may be needed.
It's just problem with permissions
Run chmod +x ./configure
Should work