Following instructions I've hit an error on autoconf:
$ autoconf -fi
autoconf: error: invalid option `-fi'
Try `autoconf --help' for more information.
Running with separated arguments also errors:
$ autoconf -f -i
configure.ac:8: error: possibly undefined macro: AM_INIT_AUTOMAKE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
So I've dropped -f and autoconf finishes without errors, but configure does not:
$ autoconf -i
$ ./configure
./configure: line 2145: syntax error near unexpected token `imgmin,'
./configure: line 2145: `AM_INIT_AUTOMAKE(imgmin, 0.7)'
Following instructions I've hit an error on autoconf:
Running with separated arguments also errors:
So I've dropped
-f
and autoconf finishes without errors, but configure does not: