Fixed the tremor check. Instead of a ogg symbol, it now checks for a tremor one ;)

svn-id: r39527
This commit is contained in:
Andre Heider 2009-03-19 18:36:45 +00:00
parent b5bcc1a23a
commit 38e2957739

2
configure vendored
View file

@ -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