aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMax Horn2006-08-05 10:51:15 +0000
committerMax Horn2006-08-05 10:51:15 +0000
commitce79bfdf598d0aef376ffa650731e17b82664683 (patch)
tree564404f4dbb3a16aca53048865f809fe40d865c8 /configure
parentec3b351133c59c49085a4fa0279e6d2e84977647 (diff)
downloadscummvm-rg350-ce79bfdf598d0aef376ffa650731e17b82664683.tar.gz
scummvm-rg350-ce79bfdf598d0aef376ffa650731e17b82664683.tar.bz2
scummvm-rg350-ce79bfdf598d0aef376ffa650731e17b82664683.zip
Since we link against libvorbisfile, we should check for its presence, too
svn-id: r23681
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure
index 8f01c54714..73ce76108a 100755
--- a/configure
+++ b/configure
@@ -977,7 +977,7 @@ if test "$_vorbis" = auto ; then
int main(void) { vorbis_packet_blocksize(0,0); return 0; }
EOF
cc_check $LDFLAGS $CXXFLAGS $OGG_CFLAGS $OGG_LIBS $VORBIS_CFLAGS $VORBIS_LIBS \
- -lvorbis -logg -lm && _vorbis=yes
+ -lvorbisfile -lvorbis -logg -lm && _vorbis=yes
fi
if test "$_vorbis" = yes ; then
_def_vorbis='#define USE_VORBIS'
@@ -1014,6 +1014,9 @@ else
fi
echo "$_tremor"
+#
+# Check for FLAC
+#
echocheck "FLAC >= 1.0.1"
if test "$_flac" = auto ; then
_flac=no