# HG changeset patch # User diego # Date 1156177456 0 # Node ID dc0ae47ef220643cf3c226a58879753436cc435b # Parent 9ed5686705a6eb44df5b9348cc637d1d2fd1b722 Properly disable tests that depend on X. diff -r 9ed5686705a6 -r dc0ae47ef220 configure --- a/configure Mon Aug 21 13:17:29 2006 +0000 +++ b/configure Mon Aug 21 16:24:16 2006 +0000 @@ -3770,6 +3770,8 @@ _ld_x11='' _novomodules="x11 $_novomodules" _res_comment="check if the dev(el) packages are installed" + # disable stuff that depends on X + _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _dga=no fi echores "$_x11" @@ -3814,7 +3816,7 @@ echocheck "Xv" -if test "$_x11" = yes && test "$_xv" = auto ; then +if test "$_xv" = auto ; then cat > $TMPC < #include @@ -3840,7 +3842,7 @@ echocheck "XvMC" -if test "$_x11" = yes && test "$_xv" = yes && test "$_xvmc" != no ; then +if test "$_xv" = yes && test "$_xvmc" != no ; then _xvmc=no cat > $TMPC < @@ -3869,7 +3871,7 @@ echocheck "Xinerama" -if test "$_x11" = yes && test "$_xinerama" = auto ; then +if test "$_xinerama" = auto ; then cat > $TMPC < #include @@ -3894,7 +3896,7 @@ # This check may be useful for future mplayer versions (to change resolution) # If you run into problems, remove '-lXxf86vm'. echocheck "Xxf86vm" -if test "$_x11" = yes && test "$_vm" = auto ; then +if test "$_vm" = auto ; then cat > $TMPC < #include @@ -3918,14 +3920,12 @@ echocheck "XF86keysym" if test "$_xf86keysym" = auto; then _xf86keysym=no - if test "$_x11" = yes ; then cat > $TMPC < #include int main(void) { return XF86XK_AudioPause; } EOF cc_check $_ld_x11 && _xf86keysym=yes - fi fi if test "$_xf86keysym" = yes ; then _def_xf86keysym='#define HAVE_XF86XK 1' @@ -3935,9 +3935,6 @@ echores "$_xf86keysym" echocheck "DGA" -if test "$_x11" = no ; then - _dga=no -fi # Version 2 is preferred to version 1 if available if test "$_dga" = auto ; then cat > $TMPC << EOF