# HG changeset patch # User faust3 # Date 1099124268 0 # Node ID 08c90d8c13251afc19bfdbb89cfdc7638d56cf39 # Parent 245f5d4b4af711d5361925052cf2283cd3ff522a fix XVideo misdetection on OSF/1, patch by Gabucino diff -r 245f5d4b4af7 -r 08c90d8c1325 configure --- a/configure Fri Oct 29 22:05:34 2004 +0000 +++ b/configure Sat Oct 30 08:17:48 2004 +0000 @@ -3394,7 +3394,10 @@ 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