xlibre-xserver/xkb/meson.build
Enrico Weigelt, metux IT consult f1c6f79819 xkb: inline remaining byte-swapping
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>
2025-10-29 10:58:37 +01:00

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,
)