summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-12-02 20:52:34 -0500
committerGaetan Nadon <memsize@videotron.ca>2010-12-07 09:47:31 -0500
commita0512b28de3348d0e32295a77959fd2ed01ffb36 (patch)
tree82c40cdf76299bae88a18c75558b04074ea3cb47
parent971d9a99556c66571b7eba3407c02178016248cd (diff)
downloadxorg-lib-libxkbcommon-a0512b28de3348d0e32295a77959fd2ed01ffb36.tar.gz
config: initialize autoconf, automake and libtool
Add missing AM_MAINTAINER_MODE, matching --enable-maintainer-mode option in autogen.sh. Acked-by: Daniel Stone <daniel@fooishbar.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--configure.ac9
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