[MPlayer-cvslog] r24669 - trunk/configure
diego
subversion at mplayerhq.hu
Sun Sep 30 00:19:54 CEST 2007
Author: diego
Date: Sun Sep 30 00:19:54 2007
New Revision: 24669
Log:
Fix Theora check without pkgconfig, -ltheora will not link on its own,
-logg is needed as well.
patch by Gianluigi Tiesi
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Sun Sep 30 00:19:54 2007
@@ -5913,12 +5913,12 @@ int main(void)
return 0;
}
EOF
- for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora"; do
+ for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
cc_check $_ld_theora && _ld_extra="$_ld_extra $_ld_theora" \
&& _theora=yes && break
done
if test "$_theora" = no && test "$_tremor_internal" = yes; then
- for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora"; do
+ for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
cc_check -I. tremor/bitwise.c $_ld_theora \
&& _ld_extra="$_ld_extra $_ld_theora" && theora=yes && break
done
More information about the MPlayer-cvslog
mailing list