diff options
author | Andre Heider | 2009-03-19 18:36:45 +0000 |
---|---|---|
committer | Andre Heider | 2009-03-19 18:36:45 +0000 |
commit | 38e295773986ef16e4c4a65b47375849e653eac4 (patch) | |
tree | f358606314c14c0e9976a40949a0be4756e4daca | |
parent | b5bcc1a23af73761f6ff40f79db0a5beb8ae82f1 (diff) | |
download | scummvm-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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |