From 93abb4f09229730c30e5bbdd6c54d4b981995eee Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 13 Feb 2010 15:46:33 +0000 Subject: Fix shared library libavutil check: test for av_clip instead of av_gcd. av_gcd is not available in the header #included in the check. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30550 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 274246f5b0..005ce0eda0 100755 --- a/configure +++ b/configure @@ -7249,7 +7249,7 @@ elif test "$_libavutil_so" = auto ; then _libavutil_so=no cat > $TMPC << EOF #include -int main(void) { av_gcd(1,1); return 0; } +int main(void) { av_clip(1, 1, 1); return 0; } EOF if $_pkg_config --exists libavutil ; then _inc_libavutil=$($_pkg_config --cflags libavutil) -- cgit v1.2.3