Currently, our installation instructions are:
autoreconf -fi
./configure
...
The autoreconf
step generates the configure
file from configure.ac
and Makefile.in
from Makefile.in
. If one of the dependencies (say pkg-config
) is not installed, both configure
and autoreconf
fail although the latter prints a cryptic error message.
When releasing source tarballs, should the configure
script be supplied in the package or not? What other files need to be included if it has to be distributed? The directories build-aux
and autom4te.cache
and files aclocal.m4
were also created.
make dist
). – Connellymake dist
is the key here – Mishmashautogen.sh
. – Puerperalautoreconf -fi
) requires the dependencies to be present. If they are missing, you can get cryptic errors. Another reason is that generation of theconfigure
script needs autoconf (and usually automake too), this is not necessary anymore once you have aconfigure
script. – Mishmash