aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Heider2009-03-19 18:36:45 +0000
committerAndre Heider2009-03-19 18:36:45 +0000
commit38e295773986ef16e4c4a65b47375849e653eac4 (patch)
treef358606314c14c0e9976a40949a0be4756e4daca
parentb5bcc1a23af73761f6ff40f79db0a5beb8ae82f1 (diff)
downloadscummvm-rg350-38e295773986ef16e4c4a65b47375849e653eac4.tar.gz
scummvm-rg350-38e295773986ef16e4c4a65b47375849e653eac4.tar.bz2
scummvm-rg350-38e295773986ef16e4c4a65b47375849e653eac4.zip
Fixed the tremor check. Instead of a ogg symbol, it now checks for a tremor one ;)
svn-id: r39527
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 3a18d4611d..82da09a1fa 100755
--- a/configure
+++ b/configure
@@ -1473,7 +1473,7 @@ if test "$_tremor" = auto ; then
_tremor=no
cat > $TMPC << EOF
#include <tremor/ivorbiscodec.h>
-int main(void) { vorbis_packet_blocksize(0,0); return 0; }
+int main(void) { vorbis_info_init(0); return 0; }
EOF
cc_check $LDFLAGS $CXXFLAGS $TREMOR_CFLAGS $TREMOR_LIBS -lvorbisidec && \
_tremor=yes