aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-22 10:04:32 +0200
committerMax Kellermann <max@duempel.org>2008-09-22 10:04:32 +0200
commitf988e127fa67f9a440b2f3f7ffd4508f2ed7f972 (patch)
treeab379e9d15d8502499eb53bdac70ca1945578725 /configure.ac
parent4f7c3f48d7dd37fa870a1a40f391520a2ad66c6a (diff)
downloadmpd-f988e127fa67f9a440b2f3f7ffd4508f2ed7f972.tar.gz
mpd-f988e127fa67f9a440b2f3f7ffd4508f2ed7f972.tar.xz
mpd-f988e127fa67f9a440b2f3f7ffd4508f2ed7f972.zip
configure: modern AC_INIT and AM_INIT_AUTOMAKE invocation
Provide program name and version in AC_INIT. Add the option "dist-bzip2" to AM_INIT_AUTOMAKE.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 21b6d56e6..1a0aa0d17 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,16 +2,15 @@ dnl
dnl $Id$
dnl
-AC_INIT
+AC_INIT(ncurses MPD client, 0.12~git, max@duempel.org, ncmpc)
AC_CONFIG_SRCDIR([src/main.c])
-AM_INIT_AUTOMAKE([ncmpc], [0.12~git])
+AM_INIT_AUTOMAKE([1.7 dist-bzip2])
AM_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])
dnl Check for programs
AC_PROG_CC_C99
AC_PROG_INSTALL
-dnl AC_PROG_LIBTOOL
AC_PROG_LIBTOOL
dnl =======================================================