Akim Demaille wrote:
| Gabor> Midnight Commander CVS. I delete every autoconf/automake
| Gabor> related files from my host, and install the last releases. Let
| Gabor> see, what happend.
|
| I don't see any commands here. What is it that you run? If it is
| `make', could you try to do it step by step?
It is cvs as I wrote above. There is an autogen.sh
#! /bin/sh
# Run this to generate all the initial makefiles, etc.
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
(
cd $srcdir
if test -d macros; then
test -f mc-aclocal.m4 && test -f gettext.m4 && cat mc-aclocal.m4 gettext.m4 >
acinclude.m4
aclocal -I macros $ACLOCAL_FLAGS
else
echo macros directory not found, skipping generation of aclocal.m4
fi
autoheader
autoconf
(cd vfs/samba; autoheader; autoconf)
)
$srcdir/configure --enable-maintainer-mode $*
| If AM_GLIB_BLAH is in configure.in, then I'd advice that you put it in
| a separate file in m4/*.m4. I don't know why aclocal complains, but
| anyway it is better this way. Then, as long as aclocal and autoconf
| complain, there is no point in trying to continue.
Can you please explain me how can I add AM_GLIB_PATH into a
sample m4 file? Thanks.