From 666adde0065a7b9d22e61a1a0eaa1145feae7862 Mon Sep 17 00:00:00 2001 From: faust3 Date: Sat, 30 Oct 2004 08:17:48 +0000 Subject: [PATCH] fix XVideo misdetection on OSF/1, patch by Gabucino git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13803 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure b/configure index a1f090c89f..d348cc1079 100755 --- a/configure +++ b/configure @@ -3394,7 +3394,10 @@ if test "$_x11" = yes && test "$_xv" != no ; then cat > $TMPC < #include -int main(void) { (void) XvGetPortAttribute(0, 0, 0, 0); return 0; } +int main(void) { + (void) XvGetPortAttribute(0, 0, 0, 0); + (void) XvQueryPortAttributes(0, 0, 0); + return 0; } EOF _xv=no cc_check $_inc_x11 -lXv $_ld_x11 && _xv=yes