From 6b86491be92970163d94323959aff3ba2390bfcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 30 Nov 2016 17:38:37 +0100 Subject: [PATCH 1/2] Modernize configure.in MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After editting configure.in and running autoreconf with autoconf-2.69 and automake-1.15, make command failed because configure.in did not hook Automake. This patch allows to regenerate the scripts with contemporary autotools. Signed-off-by: Petr Písař --- configure.in | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index 1531bad..2380b76 100644 --- a/configure.in +++ b/configure.in @@ -1,9 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(time.c) -VERSION=1.7 -AC_SUBST(VERSION) -PACKAGE=time -AC_SUBST(PACKAGE) +AC_INIT([time], [1.7]) +AM_INIT_AUTOMAKE() AC_ARG_PROGRAM -- 2.7.4