From aa360d2788b3e4aa790fea9ac4ca72c2dece484d Mon Sep 17 00:00:00 2001 From: John Zaitseff Date: Sat, 20 May 2017 09:06:00 +1000 Subject: [PATCH] Enable maintainer mode in configure.ac Although maintainer mode is the default, explicitly listing in configure.ac allows users (or distributions, more to the point) of disabling it by passing "--disable-maintainer-mode" to ./configure. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index d7fcbd4..da79bf9 100644 --- a/configure.ac +++ b/configure.ac @@ -35,6 +35,7 @@ AC_CONFIG_SRCDIR([src/trader.c]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([1.15 -Wall -Werror foreign dist-xz]) +AM_MAINTAINER_MODE([enable]) AC_CONFIG_LIBOBJ_DIR([lib]) AC_PROG_CC