Keep AppleIR enabled by default on MacOSX but have it disable on Linux.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26799 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ben 2008-05-18 12:11:17 +00:00
parent 98dc4e60f2
commit 561e9503aa
1 changed files with 4 additions and 0 deletions

View File

@ -566,7 +566,11 @@ static int use_joystick = 1, use_lirc = 1, use_lircc = 1;
static char* config_file = "input.conf";
/* Apple Remote */
#ifdef HAVE_APPLE_REMOTE
static int use_ar = 1;
#elif HAVE_APPLE_IR
static int use_ar = 0;
#endif
static char* js_dev = NULL;
static char* ar_dev = NULL;