From: Eric Leblond Date: Thu, 20 Jun 2013 13:21:36 +0000 (+0200) Subject: autotools: AM_INIT_AUTOMAKE with args is deprecated X-Git-Tag: suricata-2.0beta1~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7dbc97b01c0c7df5117479fb644782ae64ac2c43;p=thirdparty%2Fsuricata.git autotools: AM_INIT_AUTOMAKE with args is deprecated --- diff --git a/configure.ac b/configure.ac index bd1e0ee861..f861bd7bd5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,10 @@ #TODO A better place for default CFLAGS? -AC_INIT(configure.ac) AC_CONFIG_HEADERS([config.h]) - AM_INIT_AUTOMAKE(suricata, 2.0dev) + AC_INIT([suricata], [2.0dev]) + AC_CONFIG_SRCDIR([src/suricata.c]) + AM_INIT_AUTOMAKE AC_LANG_C AC_PROG_CC_C99