[MPlayer-cvslog] r31176 - trunk/configure

diego subversion at mplayerhq.hu
Fri May 14 17:34:30 CEST 2010


Author: diego
Date: Fri May 14 17:34:30 2010
New Revision: 31176

Log:
Check for termios.h before sys/termios.h.
The former location is the more current and standard variant.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Fri May 14 16:24:16 2010	(r31175)
+++ trunk/configure	Fri May 14 17:34:30 2010	(r31176)
@@ -3855,7 +3855,7 @@ def_termios_h='#undef HAVE_TERMIOS_H'
 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; }


More information about the MPlayer-cvslog mailing list