aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-02-23 16:41:05 +0000
committerTorbjörn Andersson2004-02-23 16:41:05 +0000
commit87438d54177e3b644769f785442161c222005380 (patch)
tree3bdcaeb59ff88a78946a50ca2b1f00bc1692971a
parentf5239ada1f6286e687d7ada69e82a6eb31dcfd3b (diff)
downloadscummvm-rg350-87438d54177e3b644769f785442161c222005380.tar.gz
scummvm-rg350-87438d54177e3b644769f785442161c222005380.tar.bz2
scummvm-rg350-87438d54177e3b644769f785442161c222005380.zip
Changed FLAY_LIBS to FLAC_LIBS, as pointed out by Lord_Nightmare on
#scummvm. Clarified that it's FLAC >= 1.0.1 that the configure script is looking for. (That's when the seekable decoder was added.) svn-id: r13010
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index cd5433d80d..c6add9b362 100755
--- a/configure
+++ b/configure
@@ -633,14 +633,14 @@ else
fi
echo "$_vorbis"
-echocheck "FLAC"
+echocheck "FLAC >= 1.0.1"
if test "$_flac" = auto ; then
_flac=no
cat > $TMPC << EOF
#include <FLAC/seekable_stream_decoder.h>
int main(void) { FLAC__seekable_stream_decoder_init( 0 ); return 0; }
EOF
- cc_check $LDFLAGS $CXXFLAGS $FLAC_CFLAGS $FLAY_LIBS \
+ cc_check $LDFLAGS $CXXFLAGS $FLAC_CFLAGS $FLAC_LIBS \
-lFLAC -lm && _flac=yes
fi
if test "$_flac" = yes ; then