From 84d0fd39a3d675a69da0505fd4edd7ebb874e1fb Mon Sep 17 00:00:00 2001 From: Avuton Olrich Date: Sun, 13 Mar 2011 20:27:33 -0700 Subject: Modify version string to post-release version 0.15.17~git --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 9f212b583..1276f0f89 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT(mpd, 0.15.16, musicpd-dev-team@lists.sourceforge.net) +AC_INIT(mpd, 0.15.17~git, musicpd-dev-team@lists.sourceforge.net) AC_CONFIG_SRCDIR([src/main.c]) AM_INIT_AUTOMAKE([foreign 1.9 dist-bzip2]) AM_CONFIG_HEADER(config.h) -- cgit v1.2.3 From a8f891efcdc4b4c27942cc05aa025497e7fd983b Mon Sep 17 00:00:00 2001 From: Simon Kagstrom Date: Sun, 20 Mar 2011 17:25:52 +0100 Subject: configure.ac: Enable HAVE_OGG_COMMON when using libtremor Otherwise OGGs can't be played. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 1276f0f89..853ea4326 100644 --- a/configure.ac +++ b/configure.ac @@ -904,7 +904,7 @@ AM_CONDITIONAL(HAVE_OGGFLAC, test x$enable_oggflac = xyes) AM_CONDITIONAL(HAVE_FLAC_COMMON, test x$enable_flac = xyes || test x$enable_oggflac = xyes) AM_CONDITIONAL(HAVE_OGG_COMMON, - test x$enable_vorbis = xyes || test x$enable_oggflac = xyes || test x$enable_flac = xyes) + test x$enable_vorbis = xyes || test x$enable_tremor = xyes || test x$enable_oggflac = xyes || test x$enable_flac = xyes) if test x$enable_audiofile = xyes; then PKG_CHECK_MODULES(AUDIOFILE, [audiofile >= 0.1.7], -- cgit v1.2.3