mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
util/uuid: replace with util/token, remove libuuid
Use 128-bit hexadecimal string tokens generated with /dev/urandom instead of UUIDs for xdg-foreign handles, removing the libuuid dependency. Update readme and CI. Closes #2830. build: remove xdg-foreign feature With no external dependencies required, there's no reason not to always build it. Remove WLR_HAS_XDG_FOREIGN as well.
This commit is contained in:
parent
5a178c4a23
commit
b29ac8fbac
14 changed files with 44 additions and 81 deletions
11
meson.build
11
meson.build
|
|
@ -84,7 +84,6 @@ features = {
|
|||
'libseat': false,
|
||||
'x11-backend': false,
|
||||
'xwayland': false,
|
||||
'xdg-foreign': false,
|
||||
}
|
||||
internal_features = {
|
||||
'xcb-errors': false,
|
||||
|
|
@ -104,16 +103,6 @@ pixman = dependency('pixman-1')
|
|||
math = cc.find_library('m')
|
||||
rt = cc.find_library('rt')
|
||||
|
||||
if not get_option('xdg-foreign').disabled()
|
||||
uuid = dependency('uuid', required: false)
|
||||
uuid_create = cc.has_function('uuid_create')
|
||||
if uuid.found() or uuid_create
|
||||
features += { 'xdg-foreign': true }
|
||||
elif get_option('xdg-foreign').enabled()
|
||||
error('Missing dependency uuid and uuid_create function not available ' +
|
||||
'cannot build with xdg-foreign support')
|
||||
endif
|
||||
endif
|
||||
|
||||
wlr_files = []
|
||||
wlr_deps = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue