[MPlayer-cvslog] r30550 - trunk/configure

diego subversion at mplayerhq.hu
Sat Feb 13 16:46:33 CET 2010


Author: diego
Date: Sat Feb 13 16:46:33 2010
New Revision: 30550

Log:
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.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sat Feb 13 15:31:15 2010	(r30549)
+++ trunk/configure	Sat Feb 13 16:46:33 2010	(r30550)
@@ -7249,7 +7249,7 @@ elif test "$_libavutil_so" = auto ; then
   _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)


More information about the MPlayer-cvslog mailing list