summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-10 00:26:41 +0000
committerrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-10 00:26:41 +0000
commitdb721429f8593dec589767043cb6a1ab9b9237e5 (patch)
treec47ad9fd44741abee36cac09f38917c7ca9903e2 /configure
parentd05cfecee81b7dea22aacceac07aa92d23b5c602 (diff)
downloadmpv-db721429f8593dec589767043cb6a1ab9b9237e5.tar.bz2
mpv-db721429f8593dec589767043cb6a1ab9b9237e5.tar.xz
fix --disable-termios, approved by Diego
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13908 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 8876fb4e0d..a6752a76de 100755
--- a/configure
+++ b/configure
@@ -2860,12 +2860,12 @@ if test "$_termios" = auto ; then
#include <sys/termios.h>
int main(void) { return 0; }
EOF
- _termios=no
+ _termios=auto
cc_check && _termios=yes
_def_termios_h_name='sys/termios.h'
fi
# second test:
-if test "$_termios" = no ; then
+if test "$_termios" = auto ; then
cat > $TMPC <<EOF
#include <termios.h>
int main(void) { return 0; }