aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugins/_ogg_common.h
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2007-12-31 00:54:32 +0000
committerEric Wong <normalperson@yhbt.net>2007-12-31 00:54:32 +0000
commit0d1a3539ad1d5fba353daf7bb4b08c6d8cbe83e6 (patch)
tree90cb9865dcdad8df7a015d2d85ac2a1a8c570b94 /src/inputPlugins/_ogg_common.h
parentb79f6b882a70526ec2e9fc231e0baeebdfef1e52 (diff)
downloadmpd-0d1a3539ad1d5fba353daf7bb4b08c6d8cbe83e6.tar.gz
mpd-0d1a3539ad1d5fba353daf7bb4b08c6d8cbe83e6.tar.xz
mpd-0d1a3539ad1d5fba353daf7bb4b08c6d8cbe83e6.zip
fix builds that only have FLAC >= 1.1.3 but not Ogg-Vorbis
git-svn-id: https://svn.musicpd.org/mpd/trunk@7108 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/inputPlugins/_ogg_common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inputPlugins/_ogg_common.h b/src/inputPlugins/_ogg_common.h
index 5821e6641..3e997e95b 100644
--- a/src/inputPlugins/_ogg_common.h
+++ b/src/inputPlugins/_ogg_common.h
@@ -24,7 +24,8 @@
#include "../inputPlugin.h"
-#if defined(HAVE_OGGFLAC) || defined(HAVE_OGGVORBIS)
+#if defined(HAVE_OGGFLAC) || defined(HAVE_OGGVORBIS) || \
+ (defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT > 7)
typedef enum _ogg_stream_type { VORBIS, FLAC } ogg_stream_type;