I'm following this guide to install Hercules, and everything goes well up to step 3 of Building from source - Linux and Mac OS X, where I get these results:
hugolvc@HuLuVicaMacUbuntu:~/Downloads/mvs/hercules-3.13$ ./util/bldlvlck
This utility will check the level of various utilities needed to build
hercules. Checking is done against versions that are KNOWN to work.
This doesn't mean a build will NOT succeed with older versions
of the utilities, but will give a hint as to what package may need
an upgrade if the build ever fails with some odd reason.
OK autoconf requires 2.5, found 2.71
OK automake requires 1.9, found 1.16.5
OK gawk requires 3.0, found 5.1.0
OK gcc requires 3, found 11.4.0
OK grep requires 1, found 3.7
OK libiconv requires 1.8, found 2.35.0
OK m4 requires 1.4.6, found 1.4.18
OK make requires 3.79, found 4.3
OK perl requires 5.6, found 5.34.0
OK sed requires 3.02, found 4.8
The problem raises in the following step:
4. Generate the configure script:
./autogen.sh
It raises this error:
hugolvc@HuLuVicaMacUbuntu:~/Downloads/mvs/hercules-3.13$ ./autogen.sh
bash: ./autogen.sh: No such file or directory
Do I have to install anything else to have this executable available?
./autogen.sh
– HuLu ViCa Nov 02 '23 at 16:55ls: cannot access './autogen.sh': No such file or directory
– HuLu ViCa Nov 02 '23 at 17:02./configure
file already exists – steeldriver Nov 02 '23 at 17:37sudo make install
, as the instruction says "install the program as root". – user68186 Nov 02 '23 at 17:39