From: [EMAIL PROTECTED]
Date: Wed, 15 Mar 2000 10:10:14 -0800 (PST)
when running autogen.sh in guile-readline, you get the following
error:
aclocal: configure.in: 8: macro `AM_PROG_LIBTOOL' not found in library
I imagine this leads to the configure problems later in the build.
a while ago, i submitted a small patch to address the situation where
aclocal and libtool are installed w/ different PREFIX. perhaps this is
the problem (still)? (insert standard grumble about dropped patches
here.)
thi
----------------------- ./autogen.sh ------------------
#!/bin/sh
[ -f GUILE-VERSION ] || {
echo "autogen.sh: run this command only at the top of a Guile source tree."
exit 1
}
libtool=`set \`type libtool\` ; echo $3`
libtool_prefix=`echo $libtool | sed 's|/bin/libtool||g'`
aclocal -I . -I ${libtool_prefix}/share/aclocal
libtoolize --copy --automake --ltdl
autoheader
autoconf
automake --add-missing
( echo "guile-readline..."; cd guile-readline; ./autogen.sh )
--------------------- guile-readline/autogen.sh ------------------
#!/bin/sh
[ -f readline-activator.scm ] || {
echo "autogen.sh: run this command only in the guile-readline directory."
exit 1
}
libtool=`set \`type libtool\` ; echo $3`
libtool_prefix=`echo $libtool | sed 's|/bin/libtool||g'`
aclocal -I . -I ${libtool_prefix}/share/aclocal
libtoolize --copy --automake
autoconf
automake --add-missing
------------------------------