mirror of
https://github.com/X11Libre/xserver.git
synced 2026-01-26 14:03:17 +00:00
The final one, SProcXkbSelectEvents(), is a bit more complex. Just moving this into ProcXkbSelectEvents() for now, so we can drop also the swapped dispatcher. There's still a lot of room for simplications, but leaving this for follow-up work. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
42 lines
730 B
Meson
42 lines
730 B
Meson
srcs_xkb = [
|
|
'ddxBeep.c',
|
|
'ddxCtrls.c',
|
|
'ddxLEDs.c',
|
|
'ddxLoad.c',
|
|
'maprules.c',
|
|
'xkmread.c',
|
|
'xkbtext.c',
|
|
'xkbfmisc.c',
|
|
'xkbout.c',
|
|
'xkb.c',
|
|
'xkbUtils.c',
|
|
'xkbEvents.c',
|
|
'xkbAccessX.c',
|
|
'xkbLEDs.c',
|
|
'xkbInit.c',
|
|
'xkbActions.c',
|
|
'xkbPrKeyEv.c',
|
|
'XKBMisc.c',
|
|
'XKBAlloc.c',
|
|
'XKBGAlloc.c',
|
|
'XKBMAlloc.c',
|
|
]
|
|
|
|
libxserver_xkb = static_library('xserver_xkb',
|
|
srcs_xkb,
|
|
include_directories: inc,
|
|
dependencies: common_dep,
|
|
)
|
|
|
|
srcs_xkb_stubs = [
|
|
'ddxKillSrv.c',
|
|
'ddxPrivate.c',
|
|
'ddxVT.c',
|
|
]
|
|
|
|
libxserver_xkb_stubs = static_library('xserver_xkb_stubs',
|
|
srcs_xkb_stubs,
|
|
include_directories: inc,
|
|
dependencies: common_dep,
|
|
)
|