configure: make gif test check linking too

Add QuantizeBuffer function call to gif test to actually test linking.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31373 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2010-06-13 05:32:09 +00:00 committed by Uoti Urpala
parent daebd08f48
commit cc43883825
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -4896,7 +4896,7 @@ if test "$_gif" = auto ; then
_gif=no
cat > $TMPC << EOF
#include <gif_lib.h>
int main(void) { return 0; }
int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
EOF
for _ld_gif in "-lungif" "-lgif" ; do
cc_check $_ld_gif && _gif=yes && break