scottdraves / flam3

the original fractal flame renderer and genetic language
GNU General Public License v3.0
400 stars 73 forks source link

make fails with aclocal-1.15 #14

Closed godot11 closed 6 years ago

godot11 commented 7 years ago

Running ./configure works, but then make fails with the following error:

ezio@Cantabury ~/Downloads/elsheep/flam3 $ make
CDPATH="${ZSH_VERSION+.}:" && cd . && aclocal-1.14 -I m4
/bin/bash: aclocal-1.14: command not found
Makefile:424: recipe for target 'aclocal.m4' failed
make: *** [aclocal.m4] Error 127

Changing am__api_version='1.15' in the configure script does not affect this. I found this issue on Linux Mint 18.2.

toadkicker commented 7 years ago

I fixed this by running these commands:

make clean
libtoolize
automake --add-missing
autoconf
./configure
make
sampoz commented 6 years ago

Fixed this by changing Makefile lines about ACLOCAL and AUTOMAKE:

ACLOCAL = aclocal-1.14 # -> 1.15
AUTOMAKE = automake-1.14 # -> 1.15

Found this fix from here. I am running mint 18 ( ubuntu xenial ).

adeleglise commented 6 years ago

For me the solution provided by @toadkicker is working. Using Ubuntu 17.10.