[MPlayer-cvslog] r34515 - trunk/configure
reimar
subversion at mplayerhq.hu
Thu Jan 5 16:41:59 CET 2012
Author: reimar
Date: Thu Jan 5 16:41:59 2012
New Revision: 34515
Log:
Check for correct function (th_info_init, not theora_info_init) in libtheora test.
Patch by Giorgio Vazzana {mywing81 gmail com}.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Thu Jan 5 16:39:14 2012 (r34514)
+++ trunk/configure Thu Jan 5 16:41:59 2012 (r34515)
@@ -6234,12 +6234,12 @@ echocheck "OggTheora support"
if test "$_theora" = auto ; then
_theora=no
ld_theora="-ltheoradec -logg"
- statement_check theora/theoradec.h 'theora_info_init(NULL)' $ld_theora &&
+ statement_check theora/theoradec.h 'th_info_init(NULL)' $ld_theora &&
extra_ldflags="$extra_ldflags $ld_theora" && _theora=yes
if test _theora = no; then
ld_theora=$($_pkg_config --silence-errors --libs theoradec)
inc_theora=$($_pkg_config --silence-errors --cflags theoradec)
- statement_check theora/theoradec.h 'theora_info_init(NULL)' $inc_theora $ld_theora &&
+ statement_check theora/theoradec.h 'th_info_init(NULL)' $inc_theora $ld_theora &&
extra_ldflags="$extra_ldflags $ld_theora" &&
extra_cflags="$extra_cflags $inc_theora" && _theora=yes
fi
More information about the MPlayer-cvslog
mailing list