From cc438838256eb7703ec057fbea05a6c3f713f4a0 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 13 Jun 2010 05:32:09 +0000 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 25a589658c..590b1b0b98 100755 --- a/configure +++ b/configure @@ -4896,7 +4896,7 @@ if test "$_gif" = auto ; then _gif=no cat > $TMPC << EOF #include -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