build: make internal option_xkb_* symbols static
This makes the option_xkb_* symbols declared for the evdev device manager and the wayland device manager private so we don't get symbol collisions if both of these backends are enabled. Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
This commit is contained in:
parent
fd8965a710
commit
3e85ad6b95
@ -85,9 +85,9 @@ static const gchar *subsystems[] = { "input", NULL };
|
||||
*/
|
||||
|
||||
|
||||
const char *option_xkb_layout = "us";
|
||||
const char *option_xkb_variant = "";
|
||||
const char *option_xkb_options = "";
|
||||
static const char *option_xkb_layout = "us";
|
||||
static const char *option_xkb_variant = "";
|
||||
static const char *option_xkb_options = "";
|
||||
|
||||
/*
|
||||
* ClutterEventSource for reading input devices
|
||||
|
@ -147,9 +147,9 @@ _clutter_device_manager_wayland_init (ClutterDeviceManagerWayland *self)
|
||||
{
|
||||
}
|
||||
|
||||
const char *option_xkb_layout = "us";
|
||||
const char *option_xkb_variant = "";
|
||||
const char *option_xkb_options = "";
|
||||
static const char *option_xkb_layout = "us";
|
||||
static const char *option_xkb_variant = "";
|
||||
static const char *option_xkb_options = "";
|
||||
|
||||
void
|
||||
_clutter_device_manager_wayland_add_input_group (ClutterDeviceManager *manager,
|
||||
|
Loading…
Reference in New Issue
Block a user