diff options
author | Harald Welte <laforge@gnumonks.org> | 2015-08-30 16:36:38 +0200 |
---|---|---|
committer | Neels Hofmeyr <neels@hofmeyr.de> | 2016-07-06 17:05:48 +0200 |
commit | 7fd73b92742bcb497c769444dc0ca877ffe9d702 (patch) | |
tree | e5ccf87545742fa690d8acac30ea2d756346f1de | |
parent | 0b57b08e0d2ad54d42076f8f50f5acb183d62b8c (diff) |
Support automake-1.15
Without this, autoreconf with automake-1.15 fails due to the "-Werror"
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 64a37a9c..8ca98e8b 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,10 @@ AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE([foreign]) AC_CONFIG_MACRO_DIR([m4]) -LT_INIT +AM_MAINTAINER_MODE + +AM_PROG_AR +AM_PROG_LIBTOOL dnl Checks for programs. AC_PROG_CC |