Mercurial > mplayer.hg
changeset 31119:768824e790ea
Check for termios.h before sys/termios.h.
The former location is the more current and standard variant.
author | diego |
---|---|
date | Fri, 14 May 2010 15:34:30 +0000 |
parents | df3c26e9d5c8 |
children | 93a2417ff790 |
files | configure |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Fri May 14 14:24:16 2010 +0000 +++ b/configure Fri May 14 15:34:30 2010 +0000 @@ -3855,7 +3855,7 @@ def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H' if test "$_termios" = auto ; then _termios=no - for _termios_header in "sys/termios.h" "termios.h"; do + for _termios_header in "termios.h" "sys/termios.h"; do cat > $TMPC <<EOF #include <$_termios_header> int main(void) { return 0; }