From f30730db1a597eca4ed0b9396ad528021d7a8350 Mon Sep 17 00:00:00 2001 From: aurel Date: Tue, 13 Dec 2005 21:54:28 +0000 Subject: [PATCH] restore the old behavior for --enable-theora, ie. provide a sane default for $_ld_theora git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17189 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index f45321757e..2dce10935c 100755 --- a/configure +++ b/configure @@ -5503,6 +5503,9 @@ fi if test "$_theora" = yes ; then _def_theora='#define HAVE_OGGTHEORA 1' _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" else _def_theora='#undef HAVE_OGGTHEORA' _nocodecmodules="libtheora $_nocodecmodules"