Mercurial > mplayer.hg
changeset 30508:f3f21123fa05
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.
author | diego |
---|---|
date | Sat, 13 Feb 2010 15:46:33 +0000 |
parents | cc83ac4f71af |
children | c0ab27a3b90e |
files | configure |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Sat Feb 13 14:31:15 2010 +0000 +++ b/configure Sat Feb 13 15:46:33 2010 +0000 @@ -7249,7 +7249,7 @@ _libavutil_so=no cat > $TMPC << EOF #include <libavutil/common.h> -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)