ich beschäftige mich gerade ein bisschen mit den autotools und wollte gleich mal ein einfaches Programm damit bestücken. Leider scheitert es gleich im Ansatz, denn für diese configure.in:
Code: Alles auswählen
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT(testprog, 1, abc@def.de)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/main.cpp])
#AC_CONFIG_HEADER([config.h])
# Checks for programs.
AC_PROG_CXX
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
# Checks for library functions.
AC_OUTPUT
Code: Alles auswählen
configure.in:6: error: possibly undefined macro: AM_INIT_AUTOMAKE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation
Hat jemand eine Idee, wieso das Makro nicht gefunden wird?