summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-06 09:22:28 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-06 09:22:28 +0000
commit3099d0da16505cbc0aaab34f9299404e9ec19241 (patch)
tree85d43b0cf83939a6f32ebe61d5649faed5456cbc /configure
parentc8cb753c7bc9ccc4db81a53474eb8b280a570993 (diff)
downloadmpv-3099d0da16505cbc0aaab34f9299404e9ec19241.tar.bz2
mpv-3099d0da16505cbc0aaab34f9299404e9ec19241.tar.xz
There was a fallback value for libtheora linker flags, but it was never added
to the right variable that collects linker flags. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22917 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 8c578aa75a..bdb95784ee 100755
--- a/configure
+++ b/configure
@@ -5820,7 +5820,7 @@ if test "$_theora" = yes ; then
_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"