[MPlayer-cvslog] r19456 - trunk/configure

iive subversion at mplayerhq.hu
Sat Aug 19 21:10:27 CEST 2006


Author: iive
Date: Sat Aug 19 21:10:27 2006
New Revision: 19456

Modified:
   trunk/configure

Log:
Fix xv and xinerama force on --enable-*
The previous commit changed the conditions of check execution to mach Diego's semantics
(execute check only on 'auto'), but the 'else' case forces detection to 'no',
even if previous --enable had set it to 'auto'.


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sat Aug 19 21:10:27 2006
@@ -3825,15 +3825,15 @@
 EOF
   _xv=no
   cc_check -lXv $_ld_x11 && _xv=yes
-else
-  _xv=no
 fi
+
 if test "$_xv" = yes ; then
   _def_xv='#define HAVE_XV 1'
   _ld_xv='-lXv'
   _vosrc="$_vosrc vo_xv.c"
   _vomodules="xv $_vomodules"
 else
+  _xv=no
   _def_xv='#undef HAVE_XV'
   _novomodules="xv $_novomodules"
 fi
@@ -3878,13 +3878,13 @@
 EOF
   _xinerama=no
   cc_check -lXinerama $_ld_x11 && _xinerama=yes
-else
-  _xinerama=no
 fi
+
 if test "$_xinerama" = yes ; then
   _def_xinerama='#define HAVE_XINERAMA 1'
   _ld_xinerama='-lXinerama'
 else
+  _xinerama=no
   _def_xinerama='#undef HAVE_XINERAMA'
 fi
 echores "$_xinerama"



More information about the MPlayer-cvslog mailing list