From ae754f40fb7b5c96426f6f47a793ac2c1d9226fd Mon Sep 17 00:00:00 2001 From: pl Date: Sat, 18 May 2002 09:21:35 +0000 Subject: [PATCH] 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 --- configure | 6 ++++++ 1 file changed, 6 insertions(+) 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