From: Duilio J. P. <dp...@fc...> - 2004-06-19 23:47:28
|
El s=C3=A1b, 19 de 06 de 2004 a las 17:14, Dennis Smit escribi=C3=B3: > Heya! >=20 > I'm still having problems with auto*, I installed automake-1.8 and when > running ./autogen.sh it gives: >=20 > :/usr/src/libvis-duilo/libvisual-xmms-0.1.5# ./autogen.sh > autoreconf: Entering directory `.' > autoreconf: configure.ac: not using Gettext > autoreconf: running: aclocal --output=3Daclocal.m4t > autoreconf: `aclocal.m4' is unchanged > autoreconf: configure.ac: tracing > configure.ac:52: warning: AC_ARG_PROGRAM was called before > AC_CANONICAL_TARGET > autoconf/general.m4:1657: AC_CANONICAL_TARGET is expanded from... > configure.ac:52: AC_CANONICAL_TARGET is required by... > aclocal.m4:7426: AM_PATH_SDL is expanded from... > configure.ac:52: the top level > autoreconf: running: libtoolize --force > autoreconf: running: /opt/gtk2/bin/autoconf --force > configure.ac:52: warning: AC_ARG_PROGRAM was called before > AC_CANONICAL_TARGET > autoconf/general.m4:1657: AC_CANONICAL_TARGET is expanded from... > configure.ac:52: AC_CANONICAL_TARGET is required by... > aclocal.m4:7426: AM_PATH_SDL is expanded from... > configure.ac:52: the top level > autoreconf: running: /opt/gtk2/bin/autoheader --force > configure.ac:52: warning: AC_ARG_PROGRAM was called before > AC_CANONICAL_TARGET > autoconf/general.m4:1657: AC_CANONICAL_TARGET is expanded from... > configure.ac:52: AC_CANONICAL_TARGET is required by... > aclocal.m4:7426: AM_PATH_SDL is expanded from... > configure.ac:52: the top level > autoreconf: running: automake --add-missing --force-missing > configure.ac:52: warning: AC_ARG_PROGRAM was called before > AC_CANONICAL_TARGET > autoconf/general.m4:1657: AC_CANONICAL_TARGET is expanded from... > configure.ac:52: AC_CANONICAL_TARGET is required by... > aclocal.m4:7426: AM_PATH_SDL is expanded from... > configure.ac:52: the top level > configure.ac:5: version mismatch. This is Automake 1.8.5, > configure.ac:5: but the definition used by this AM_INIT_AUTOMAKE > configure.ac:5: comes from Automake 1.4-p6. You should recreate > configure.ac:5: aclocal.m4 with aclocal and run automake again. > /usr/share/automake-1.8/am/depend2.am: am__fastdepCC does not appear in > AM_CONDITIONAL > /usr/share/automake-1.8/am/depend2.am: AMDEP does not appear in > AM_CONDITIONAL > autoreconf: automake failed with exit status: 63 >=20 >=20 > I really appreciate your help btw!! thanks a lot >=20 > Cheers, > Dennis >=20 Don't worry about the warnings in regard of AC_CANONICAL_TARGET and AC_ARG_PROGRAM, this is because AM_PATH_SDL macro is very old. We cannot (must not) change it, only Lantinga. The error is because, like you see, aclocal.m4 is unchanged. These M4 macros must be recreated by automake 1.8. Just remove aclocal.m4, and run again autogen.sh. If the script don't=20 rebuild the file, run aclocal first. The aclocal.m4 file must not be submitted to the CVS repository. Duilio. |