aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2011-12-10 08:28:16 -0800
committerMax Kellermann <max@duempel.org>2011-12-12 10:02:05 +0100
commit7dfbdef505e7d58880acb3fa87848d7bd85ccf14 (patch)
tree2f32d331897a84a3a8ba4b67f337ff84b0a21ee4 /configure.ac
parent94386374ff9e42f1738d146bd711d01b9191056a (diff)
downloadmpd-7dfbdef505e7d58880acb3fa87848d7bd85ccf14.tar.gz
mpd-7dfbdef505e7d58880acb3fa87848d7bd85ccf14.tar.xz
mpd-7dfbdef505e7d58880acb3fa87848d7bd85ccf14.zip
configure.ac: Update to methods which autoconf is going to
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 6da77282c..34273212e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ AC_INIT(mpd, 0.17~git, musicpd-dev-team@lists.sourceforge.net)
AC_CONFIG_SRCDIR([src/main.c])
AM_INIT_AUTOMAKE([foreign 1.11 dist-bzip2 subdir-objects])
AM_SILENT_RULES
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
AC_CONFIG_MACRO_DIR([m4])
AC_DEFINE(PROTOCOL_VERSION, "0.17.0", [The MPD protocol version])
@@ -1615,8 +1615,9 @@ echo 'Generating files needed for compilation'
dnl ---------------------------------------------------------------------------
dnl Generate files
dnl ---------------------------------------------------------------------------
-AC_OUTPUT(Makefile)
-AC_OUTPUT(doc/doxygen.conf)
-AC_OUTPUT(mpd.service)
+AC_CONFIG_FILES(Makefile)
+AC_CONFIG_FILES(doc/doxygen.conf)
+AC_CONFIG_FILES(mpd.service)
+AC_OUTPUT
echo 'MPD is ready for compilation, type "make" to begin.'