Add missing AM_MAINTAINER_MODE, matching --enable-maintainer-mode option in autogen.sh.
Signed-off-by: Gaetan Nadon <[email protected]> --- configure.ac | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index dbc48e7..aca85e0 100644 --- a/configure.ac +++ b/configure.ac @@ -20,14 +20,21 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. +# Initialize Autoconf AC_PREREQ([2.60]) AC_INIT([libxkbcommon], [0.1.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) -AM_INIT_AUTOMAKE([dist-bzip2 foreign]) +AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS([src/config.h]) AC_CONFIG_MACRO_DIR([m4]) +# Initialize Automake +AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE + +# Initialize libtool AC_PROG_LIBTOOL + AC_PROG_CC AC_PROG_YACC AC_PROG_LEX -- 1.6.0.4 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
