summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-14 15:34:30 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-14 15:34:30 +0000
commit0a33fdb83a5488744e3a148d1a09801850135a56 (patch)
tree7f47ca859a952d63f4724d2fd39d60c891bfcfb2 /configure
parentb6bcfb4f006c81980e8c16127e7a516cfa89a6fb (diff)
downloadmpv-0a33fdb83a5488744e3a148d1a09801850135a56.tar.bz2
mpv-0a33fdb83a5488744e3a148d1a09801850135a56.tar.xz
Check for termios.h before sys/termios.h.
The former location is the more current and standard variant. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31176 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 1f0e1a29fb..29dadcca53 100755
--- a/configure
+++ b/configure
@@ -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; }