Tengo lo siguiente en configure.ac:
AC_CHECK_PROGS(MAKE,$MAKE make gmake,error)
if test "x$MAKE" = "xerror" ;then
AC_MSG_ERROR([cannot find a make command])
fi
Esto ha estado en nuestro proyecto durante mucho tiempo, pero en algunas configuraciones, aparece este error:
configure.ac:45: error: possibly undefined macro: AC_MSG_ERROR
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
Las líneas que se agregaron recientemente encima de esto:
AC_CONFIG_MACRO_DIR([m4])
LT_INIT
¿Alguien puede explicar qué causa este error y cómo localizar el problema?
EDITAR: agregando detalles sobre las diferencias.
Caja que funciona:
uname -a Linux host1 2.6.38-13-generic #53-Ubuntu SMP Mon Nov 28 19:33:45 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux
automake: 1.11.1
autoconf: 2.67
m4: 1.4.14
libtoolize: 2.2.6b
Caja que no funciona:
Linux host2 2.6.32-35-generic-pae #78-Ubuntu SMP Tue Oct 11 17:01:12 UTC 2011 i686 GNU/Linux
automake: 1.11.1
autoconf: 2.65
m4: 1.4.13
libtoolize: 2.2.6b
NUEVA EDICIÓN: solo las máquinas de 32 bits experimentan esta dificultad.
ACTUALIZADO soy capaz de reproducir el problema en una máquina con CentOS autoconf 2.67
, automake 1.11.1
, libtool 2.2.6b
, y m4 1.4.14
. ¿Es esto solo un error con máquinas de 32 bits?