Hello,
running autoconf with the simple configure.ac file following produce this
error:
configure:2616: error: possibly undefined macro: _AM_DEPENDENCIES
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.ac:
# Process this file with autoconf to produce a configure script.
AC_INIT([blasth],[0.1],[EMAIL PROTECTED])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE
AC_C_INLINE
AC_CONFIG_FILES([src/Makefile])
AC_OUTPUT
Note that when removing AM_INIT_AUTOMAKE or AC_C_INLINE it works fine (but not
really useful)
How can I fix this problem??
Thanks
Thomas
A+