Ich bin neu in Autotools, und folgende tutorial. aber ich konnte diese Fehler nicht lösen,Automake-Fehler: kein ordnungsgemäßer Aufruf von AM_INIT_AUTOMAKE wurde gefunden
$ automake
configure.ac: error: no proper invocation of AM_INIT_AUTOMAKE was found.
..
Makefile.am: error: required file './depcomp' not found
..
/usr/share/automake-1.12/am/depend2.am: error: am__fastdepCC does not appear in AM_CONDITIONAL
..
/usr/share/automake-1.12/am/depend2.am: error: AMDEP does not appear in AM_CONDITIONAL
..
meine configure.ac
Datei ist
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
AM_INIT_AUTOMAKE(hello,1.0)
AC_CONFIG_SRCDIR([config.h.in])
AM_CONFIG_HEADERS(config.h)
# Checks for programs.
AC_PROG_CC
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADERS([sys/time.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CHECK_FUNCS([gettimeofday])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
ich Lösung auf Internet überprüft, meine configure.ac
sieht gut aus, weiß nicht, was falsch ist.
Sie haben Recht, es hat funktioniert, vielen Dank. – arslan
Ich sollte nach neuesten Beispielen suchen. – arslan
Guter Punkt, um Autoreconf zu verwenden. Das wusste ich nicht. – jmmk