diff options
author | Max Kellermann <max@duempel.org> | 2008-10-18 07:21:04 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-18 07:21:04 +0200 |
commit | 90fdf07aa9399459a08b7570cce388d2810b33ff (patch) | |
tree | 2a99dbae8655502560ff9645eeeb578a97d5a683 /configure.ac | |
parent | eace56521227394ffa4ab93e25305c1c19731f5b (diff) | |
download | mpd-90fdf07aa9399459a08b7570cce388d2810b33ff.tar.gz mpd-90fdf07aa9399459a08b7570cce388d2810b33ff.tar.xz mpd-90fdf07aa9399459a08b7570cce388d2810b33ff.zip |
Makefile.am: require automake 1.9
With heavy use of conditionals, I broke Makefile.am for the ancient
automake version 1.6. Instead of supporting this automake version
forever, I'm removing support for it now. Since automake isn't
required on the build machine, nobody should have a serious problem
with that.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 565c2640a..4ab992009 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ dnl AM_INIT_AUTOMAKE(mpd, 0.14.0) AC_PREREQ(2.60) AC_INIT(mpd, 0.14.0, musicpd-dev-team@lists.sourceforge.net) -AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION) +AM_INIT_AUTOMAKE([foreign 1.9 dist-bzip2]) AC_CONFIG_MACRO_DIR([m4]) AC_SUBST(MPD_LIBS) |