Files
xserver/hw/vfb/meson.build
Enrico Weigelt, metux IT consult 967ae609b6 dix: drop DDXBEFORERESET symbol
Reduce complexity for things that really don't matter much:

The ddxBeforeReset() function is called when the Xserver going to reset
(new server generation). Right now, the only DDX really needing that is
Xwin, on all the others it's just no-op.

We've got an extra complicated build logic, which ifdef's out this all when
Xwin isn't built at all. The saving is extremely minimal - just skipping
few stub functions, which in most sessions aren't even called.

Therefore, get rid of this extra complexity that isn't giving us any
notable gain.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
2025-08-04 11:41:48 +02:00

31 lines
579 B
Meson

srcs = [
'InitInput.c',
'InitOutput.c',
'../../mi/miinitext.c',
'../../mi/miinitext.h',
'../stubs/ddxBeforeReset.c',
]
xvfb_server = executable(
'Xvfb',
srcs,
include_directories: inc,
dependencies: common_dep,
link_with: [
libxserver_main,
libxserver_fb,
libxserver,
libxserver_xkb_stubs,
libxserver_xi_stubs,
libxserver_glx,
libglxvnd,
],
install: true,
)
install_man(configure_file(
input: 'man/Xvfb.man',
output: 'Xvfb.1',
configuration: manpage_config,
))