1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

fix build on linux

missing ifdef in the previous commit made the build fail
This commit is contained in:
Stefano Pigozzi 2013-06-03 23:02:16 +02:00
parent 72f2942dfa
commit daf8ed831b

View File

@ -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}
};