From 7100cc6ca79ba4c2ede57142e159d2127040baba Mon Sep 17 00:00:00 2001 From: Mathieu Bridon Date: Mon, 8 Sep 2014 11:34:50 +0200 Subject: [PATCH] Modernize the configure.ac Without it, Automake 1.13 and above will refuse it. See the details for AM_INIT_AUTOMAKE at: http://www.gnu.org/software/automake/manual/automake.html#Public-Macros --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index a35d1c1..6c07ae3 100644 --- a/configure.ac +++ b/configure.ac @@ -1,10 +1,10 @@ -AC_INIT +AC_INIT([libev], [4.18]) orig_CFLAGS="$CFLAGS" AC_CONFIG_SRCDIR([ev_epoll.c]) -AM_INIT_AUTOMAKE(libev,4.18) dnl also update ev.h! +AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([config.h]) AM_MAINTAINER_MODE -- 2.1.0