We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, updating autotools for mlterm does not work out of the box, the minimal working way I found was
env AUTOMAKE=true AUTOHEADER=true \ autom4te_buildauxdir=/usr/share/libtool/build-aux/ \ autoreconf -f -i . baselib encodefilter
Specifically autoheader needs to be disabled to avoid
autoheader: warning: missing template: CALLOC_CHECK_OVERFLOW autoheader: warning: Use AC_DEFINE([CALLOC_CHECK_OVERFLOW], [], [Description]) autoheader: warning: missing template: HAVE_GNU_SOURCE autoheader: warning: missing template: HAVE_SYS_BITYPES_H autoreconf: error: /usr/bin/autoheader failed with exit status: 1
and automake to avoid
automake: error: no 'Makefile.am' found for any configure output autoreconf: error: automake failed with exit status: 1
and setting autom4te_buildauxdir is the needed because automake cannot run which causes
configure.in: error: required file 'compile' not found configure.in: error: required file 'missing' not found
It would be nice if there either was a simpler way or if it was documented.
TIA, cu Andreas
The text was updated successfully, but these errors were encountered:
I don't think automake and autoheader are used, that's why they fail. At the very least for automake the lack of Makefile.am should make that obvious.
Sorry, something went wrong.
No branches or pull requests
Hello,
updating autotools for mlterm does not work out of the box, the minimal working way I found was
env AUTOMAKE=true AUTOHEADER=true \ autom4te_buildauxdir=/usr/share/libtool/build-aux/ \ autoreconf -f -i . baselib encodefilter
Specifically autoheader needs to be disabled to avoid
and automake to avoid
and setting autom4te_buildauxdir is the needed because automake cannot run which causes
It would be nice if there either was a simpler way or if it was documented.
TIA, cu Andreas
The text was updated successfully, but these errors were encountered: