# HG changeset patch # User nenolod # Date 1172412106 28800 # Node ID c26dc360a03e61940a378c48247ebcffc7260f5b # Parent b938fe96b20e01e7004fbbf84e305283fa28b8da [svn] - no vorbis? disallow flac too. diff -r b938fe96b20e -r c26dc360a03e ChangeLog --- a/ChangeLog Sun Feb 25 05:27:51 2007 -0800 +++ b/ChangeLog Sun Feb 25 06:01:46 2007 -0800 @@ -1,3 +1,12 @@ +2007-02-25 13:27:51 +0000 Yoshiki Yazawa + revision [1552] + - ensure that info->remote is set if url begins with http:// so that metadata can be displayed. + + trunk/src/madplug/input.c | 5 ++++- + trunk/src/madplug/plugin.h | 2 -- + 2 files changed, 4 insertions(+), 3 deletions(-) + + 2007-02-25 11:35:59 +0000 William Pitcock revision [1550] - depend on $(OGG_VORBIS_*) for debian's sake diff -r b938fe96b20e -r c26dc360a03e configure.ac --- a/configure.ac Sun Feb 25 05:27:51 2007 -0800 +++ b/configure.ac Sun Feb 25 06:01:46 2007 -0800 @@ -510,8 +510,13 @@ enable_flac="yes") if test "x$enable_flac" = xyes; then - INPUT_PLUGINS="$INPUT_PLUGINS flac" - have_flac=yes + if test "x$have_oggvorbis" = xyes; then + INPUT_PLUGINS="$INPUT_PLUGINS flac" + have_flac=yes + else + AC_MSG_RESULT([*** flac plugin couldn't be enabled due to missing dependencies ***]) + have_flac=no + fi else AC_MSG_RESULT([*** flac plugin disabled per user request ***]) have_flac=no