summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-18 09:21:35 +0000
committerpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-18 09:21:35 +0000
commitae754f40fb7b5c96426f6f47a793ac2c1d9226fd (patch)
tree403dbe8a0310f4a13c263a10247b3beed72b9cb2 /configure
parenteb7cbca975867611ef1896ea7cd5208edc331c44 (diff)
downloadmpv-ae754f40fb7b5c96426f6f47a793ac2c1d9226fd.tar.bz2
mpv-ae754f40fb7b5c96426f6f47a793ac2c1d9226fd.tar.xz
gif support: added tests with the X11 libs (required by some lib(un)gif)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6116 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index 42636a9173..abb0858a6f 100755
--- a/configure
+++ b/configure
@@ -2350,6 +2350,12 @@ EOF
elif cc_check -lgif && "$TMPO" >> "$TMPLOG" ; then
_gif=yes
_ld_gif="-lgif"
+ elif cc_check -lungif $_ld_x11 && "$TMPO" >> "$TMPLOG" ; then
+ _gif=yes
+ _ld_gif="-lungif $_ld_x11"
+ elif cc_check -lgif $_ld_x11 && "$TMPO" >> "$TMPLOG" ; then
+ _gif=yes
+ _ld_gif="-lgif $_ld_x11"
fi
fi