# HG changeset patch # User reimar # Date 1325778119 0 # Node ID cbee80faf0aa12ec85d7e1496550234ca6915cdf # Parent 708adcb40b587a61ab3a4c75c85a28ff1a2f4266 Check for correct function (th_info_init, not theora_info_init) in libtheora test. Patch by Giorgio Vazzana {mywing81 gmail com}. diff -r 708adcb40b58 -r cbee80faf0aa configure --- a/configure Thu Jan 05 15:39:14 2012 +0000 +++ b/configure Thu Jan 05 15:41:59 2012 +0000 @@ -6234,12 +6234,12 @@ 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