# HG changeset patch # User ben # Date 1211112677 0 # Node ID 5f304bb41cd97f896bdb2d78800396ffa6f2b145 # Parent c07699d06e62bc79c7503abd9c4825c455987442 Keep AppleIR enabled by default on MacOSX but have it disable on Linux. diff -r c07699d06e62 -r 5f304bb41cd9 input/input.c --- a/input/input.c Sun May 18 11:58:35 2008 +0000 +++ b/input/input.c Sun May 18 12:11:17 2008 +0000 @@ -566,7 +566,11 @@ 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;