mi: sync: move over public SDK headers to include/

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-02-12 13:49:39 +01:00
committed by Enrico Weigelt
parent f3d2731684
commit 82de39bc4e
6 changed files with 4 additions and 11 deletions

View File

@@ -447,6 +447,10 @@ if build_xorg
'list.h', 'list.h',
'misc.h', 'misc.h',
'miscstruct.h', 'miscstruct.h',
'misync.h',
'misyncfd.h',
'misyncshm.h',
'misyncstr.h',
'opaque.h', 'opaque.h',
'optionstr.h', 'optionstr.h',
'os.h', 'os.h',

View File

@@ -3,13 +3,6 @@ srcs_miext_sync = [
'misyncfd.c', 'misyncfd.c',
] ]
hdrs_miext_sync = [
'misync.h',
'misyncfd.h',
'misyncshm.h',
'misyncstr.h',
]
if xshmfence_dep.found() if xshmfence_dep.found()
srcs_miext_sync += 'misyncshm.c' srcs_miext_sync += 'misyncshm.c'
endif endif
@@ -22,7 +15,3 @@ libxserver_miext_sync = static_library('xserver_miext_sync',
xshmfence_dep, xshmfence_dep,
], ],
) )
if build_xorg
install_data(hdrs_miext_sync, install_dir: xorgsdkdir)
endif