mirror of
https://github.com/mpv-player/mpv
synced 2025-01-20 21:07:29 +01:00
detect termios.h if no sys/termios.h (qnx getch2 support working)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3282 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
81948eca1a
commit
e0ac7e9222
27
configure
vendored
27
configure
vendored
@ -1216,13 +1216,34 @@ int main(void) { return 0; }
|
|||||||
EOF
|
EOF
|
||||||
_termios=no
|
_termios=no
|
||||||
cc_check && _termios=yes
|
cc_check && _termios=yes
|
||||||
|
_def_termios_h_name='sys/termios.h'
|
||||||
fi
|
fi
|
||||||
|
# second test:
|
||||||
|
if test "$_termios" = no ; then
|
||||||
|
cat > $TMPC <<EOF
|
||||||
|
#include <termios.h>
|
||||||
|
int main(void) { return 0; }
|
||||||
|
EOF
|
||||||
|
_termios=no
|
||||||
|
cc_check && _termios=yes
|
||||||
|
_def_termios_h_name='termios.h'
|
||||||
|
fi
|
||||||
|
|
||||||
if test "$_termios" = yes ; then
|
if test "$_termios" = yes ; then
|
||||||
_def_termios='#define HAVE_TERMIOS 1'
|
_def_termios='#define HAVE_TERMIOS 1'
|
||||||
else
|
_def_termios_h='#undef HAVE_TERMIOS_H'
|
||||||
|
_def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
|
||||||
|
|
||||||
|
if test "$_def_termios_h_name" = 'sys/termios.h' ; then
|
||||||
|
_def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
|
||||||
|
elif test "$_def_termios_h_name" = 'termios.h' ; then
|
||||||
|
_def_termios_h='#define HAVE_TERMIOS_H 1'
|
||||||
|
fi
|
||||||
|
else
|
||||||
_def_termios='#undef HAVE_TERMIOS'
|
_def_termios='#undef HAVE_TERMIOS'
|
||||||
|
_def_termios_h_name=''
|
||||||
fi
|
fi
|
||||||
echores "$_termios"
|
echores "$_termios (using: $_def_termios_h_name)"
|
||||||
|
|
||||||
|
|
||||||
echocheck "shm"
|
echocheck "shm"
|
||||||
@ -2855,6 +2876,8 @@ $_def_termcap
|
|||||||
|
|
||||||
/* termios flag for getch2.c */
|
/* termios flag for getch2.c */
|
||||||
$_def_termios
|
$_def_termios
|
||||||
|
$_def_termios_h
|
||||||
|
$_def_termios_sys_h
|
||||||
|
|
||||||
/* enable PNG support */
|
/* enable PNG support */
|
||||||
$_def_png
|
$_def_png
|
||||||
|
@ -16,9 +16,16 @@
|
|||||||
#ifdef USE_IOCTL
|
#ifdef USE_IOCTL
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_TERMIOS
|
#ifdef HAVE_TERMIOS
|
||||||
|
#ifdef HAVE_TERMIOS_H
|
||||||
|
#include <termios.h>
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_TERMIOS_SYS_H
|
||||||
#include <sys/termios.h>
|
#include <sys/termios.h>
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "keycodes.h"
|
#include "keycodes.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user