changeset 728:c26dc360a03e trunk

[svn] - no vorbis? disallow flac too.
author nenolod
date Sun, 25 Feb 2007 06:01:46 -0800
parents b938fe96b20e
children 1959cac04fb8
files ChangeLog configure.ac
diffstat 2 files changed, 16 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 <yaz@cc.rim.or.jp>
+  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 <nenolod@sacredspiral.co.uk>
   revision [1550]
   - depend on $(OGG_VORBIS_*) for debian's sake
--- 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