diff options
author | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-03-05 10:28:32 +0000 |
---|---|---|
committer | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-03-05 10:28:32 +0000 |
commit | 1815f7c64e8f6c91e030a951c64f464be75a4c8a (patch) | |
tree | e0c9769e2a5976c00731a7389de9a9301dfd6bad | |
parent | 3532cd532ed995ca30cab0ae420878f1dd334f12 (diff) |
fix for libgif TVT hack detection in configure patch by (Ambrose Li <a.c.li at ieee dot org>)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9534 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3021,7 +3021,7 @@ fi echores "$_gif" -if test "$_gif" = yes ; then +case "$_gif" in yes*) echocheck "broken giflib workaround" _def_gif_tvt_hack='#define HAVE_GIF_TVT_HACK 1' @@ -3039,7 +3039,8 @@ EOF else echores "enabled" fi -fi + ;; +esac if test "$_vesa" != no ; then |