# HG changeset patch # User diego # Date 1175851348 0 # Node ID 515545f81186b8086503004e93c2ccdde7d6ef82 # Parent b5b63e82bb3e9532358b354a7cc6378a31561e5c There was a fallback value for libtheora linker flags, but it was never added to the right variable that collects linker flags. diff -r b5b63e82bb3e -r 515545f81186 configure --- a/configure Thu Apr 05 16:33:54 2007 +0000 +++ b/configure Fri Apr 06 09:22:28 2007 +0000 @@ -5820,7 +5820,7 @@ _codecmodules="libtheora $_codecmodules" # when --enable-theora is forced, we'd better provide a probably sane # $_ld_theora than nothing - test -z "$_ld_theora" && _ld_theora="-ltheora -logg" + test -z "$_ld_theora" && _ld_extra="$_ld_extra -ltheora -logg" else _def_theora='#undef HAVE_OGGTHEORA' _nocodecmodules="libtheora $_nocodecmodules"