mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 15:52:25 +00:00
Port to darwin.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5949 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
9d883ac048
commit
e63e4adda4
@ -219,7 +219,7 @@ void getch2_enable(){
|
||||
struct termios tio_new;
|
||||
#if defined(__NetBSD__) || defined(__svr4__) || defined(__CYGWIN__) || defined(__OS2__)
|
||||
tcgetattr(0,&tio_orig);
|
||||
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__bsdi__)
|
||||
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(__APPLE__)
|
||||
ioctl(0,TIOCGETA,&tio_orig);
|
||||
#else
|
||||
ioctl(0,TCGETS,&tio_orig);
|
||||
@ -230,7 +230,7 @@ struct termios tio_new;
|
||||
tio_new.c_cc[VTIME] = 0;
|
||||
#if defined(__NetBSD__) || defined(__svr4__) || defined(__CYGWIN__) || defined(__OS2__)
|
||||
tcsetattr(0,TCSANOW,&tio_new);
|
||||
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__bsdi__)
|
||||
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(__APPLE__)
|
||||
ioctl(0,TIOCSETA,&tio_new);
|
||||
#else
|
||||
ioctl(0,TCSETS,&tio_new);
|
||||
@ -244,7 +244,7 @@ void getch2_disable(){
|
||||
#ifdef HAVE_TERMIOS
|
||||
#if defined(__NetBSD__) || defined(__svr4__) || defined(__CYGWIN__) || defined(__OS2__)
|
||||
tcsetattr(0,TCSANOW,&tio_orig);
|
||||
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__bsdi__)
|
||||
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(__APPLE__)
|
||||
ioctl(0,TIOCSETA,&tio_orig);
|
||||
#else
|
||||
ioctl(0,TCSETS,&tio_orig);
|
||||
|
Loading…
Reference in New Issue
Block a user