changeset 3057:a78b90991320

fixes for bugs found by Ivan Kalvatchev <iive@yahoo.com> (--enable-termcap e.g.)
author pl
date Wed, 21 Nov 2001 21:09:03 +0000
parents 213b35f84cf3
children e061769cc742
files configure
diffstat 1 files changed, 6 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Wed Nov 21 19:12:39 2001 +0000
+++ b/configure	Wed Nov 21 21:09:03 2001 +0000
@@ -1154,8 +1154,6 @@
 int main(void) { return 0; }
 EOF
   cc_check -ltermcap && _termcap=yes
-else
-  _termcap=no
 fi
 if test "$_termcap" = yes ; then
   _def_termcap='#define USE_TERMCAP 1'
@@ -1174,8 +1172,6 @@
 int main(void) { return 0; }
 EOF
   cc_check && _termios=yes
-else
-  _termios=no
 fi
 if test "$_termios" = yes ; then
   _def_termios='#define HAVE_TERMIOS 1'
@@ -1352,7 +1348,7 @@
 
 
 echocheck "Xv"
-if test "$_x11" = yes && test "$_xv" = auto ; then
+if test "$_x11" = yes && test "$_xv" != no ; then
   cat > $TMPC <<EOF
 #include <X11/Xlib.h>
 #include <X11/extensions/Xvlib.h>
@@ -1374,7 +1370,7 @@
 
 
 echocheck "Xinerama"
-if test "$_x11" = yes && test "$_xinerama" = auto ; then
+if test "$_x11" = yes && test "$_xinerama" != no ; then
   cat > $TMPC <<EOF
 #include <X11/Xlib.h>
 #include <X11/extensions/Xinerama.h>
@@ -1400,7 +1396,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 "$_x11" = yes && test "$_vm" != no ; then
   cat > $TMPC <<EOF
 #include <X11/Xlib.h>
 #include <X11/extensions/xf86vmode.h>
@@ -1421,7 +1417,7 @@
 
 
 echocheck "DGA"
-if test "$_x11" = yes && test "$_dga" = auto ; then
+if test "$_x11" = yes && test "$_dga" != no ; then
   cat > $TMPC << EOF
 #include <X11/Xlib.h>
 #include <X11/extensions/xf86dga.h>
@@ -1443,7 +1439,7 @@
 
 
 echocheck "DGA 2.0"
-if test "$_x11" = yes && test "$_dga2" = auto ; then
+if test "$_x11" = yes && test "$_dga2" != no ; then
   cat > $TMPC << EOF
 #include <X11/Xlib.h>
 #include <X11/extensions/xf86dga.h>
@@ -1451,8 +1447,6 @@
 EOF
   _dga2=no
   cc_check $_inc_x11 $_ld_x11 -lXxf86dga -lXxf86vm && _dga2=yes
-else
-  _dga2=no
 fi
 if test "$_dga2" = yes ; then
   _def_dga2='#define HAVE_DGA2 1'
@@ -1538,7 +1532,7 @@
 int main(void) { return 0; }
 EOF
   _ggi=no
-  cc_check  -lggi && _ggi=yes
+  cc_check -lggi && _ggi=yes
 fi
 if test "$_ggi" = yes ; then
   _def_ggi='#define HAVE_GGI 1'