From daf8ed831b4ae63cf0931cc3d6727956137f865f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 3 Jun 2013 23:02:16 +0200 Subject: fix build on linux missing ifdef in the previous commit made the build fail --- core/input/input.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/input/input.c b/core/input/input.c index 62d75bb3c0..4bfc22a08c 100644 --- a/core/input/input.c +++ b/core/input/input.c @@ -551,7 +551,9 @@ static const m_option_t mp_input_opts[] = { OPT_FLAG("joystick", input.use_joystick, CONF_GLOBAL), OPT_FLAG("lirc", input.use_lirc, CONF_GLOBAL), OPT_FLAG("lircc", input.use_lircc, CONF_GLOBAL), +#ifdef CONFIG_COCOA OPT_FLAG("ar", input.use_ar, CONF_GLOBAL), +#endif { NULL, NULL, 0, 0, 0, 0, NULL} }; -- cgit v1.2.3