From: Max Kellermann Date: Mon, 22 Sep 2008 08:04:32 +0000 (+0200) Subject: configure: modern AC_INIT and AM_INIT_AUTOMAKE invocation X-Git-Tag: v0.12_alpha1~195 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f988e127fa67f9a440b2f3f7ffd4508f2ed7f972;p=ncmpc.git 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. --- diff --git a/configure.ac b/configure.ac index 21b6d56..1a0aa0d 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 =======================================================