summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-06-13 05:32:09 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:07:42 +0200
commitcc438838256eb7703ec057fbea05a6c3f713f4a0 (patch)
tree1fba7b1cc48c37c6d95a7ee5eb73a5c2050de672 /configure
parentdaebd08f48566e19339c740bcc4319368b3b21be (diff)
downloadmpv-cc438838256eb7703ec057fbea05a6c3f713f4a0.tar.bz2
mpv-cc438838256eb7703ec057fbea05a6c3f713f4a0.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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 <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