From a0512b28de3348d0e32295a77959fd2ed01ffb36 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Thu, 2 Dec 2010 20:52:34 -0500 Subject: [PATCH] config: initialize autoconf, automake and libtool Add missing AM_MAINTAINER_MODE, matching --enable-maintainer-mode option in autogen.sh. Acked-by: Daniel Stone Signed-off-by: Gaetan Nadon --- configure.ac | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 -- 2.7.4