fix --disable-termios, approved by Diego

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13908 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rathann 2004-11-10 00:26:41 +00:00
parent d05cfecee8
commit db721429f8
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -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; }