head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.04.13.17.20.09; author kikadf; state Exp; branches; next ; commitid zBE6VaCjsckD0PBG; desc @@ 1.1 log @ wlroots: new package Wlroots implements a huge variety of Wayland compositor features and implements them right, so you can focus on the features that make your compositor unique. By using wlroots, you get high performance, excellent hardware compatibility, broad support for many wayland interfaces, and comfortable development tools - or any subset of these features you like, because all of them work independently of one another and freely compose with anything you want to implement yourself. @ text @$NetBSD$ * libopeninput lacks libinput_device_get_id_bustype() --- backend/libinput/meson.build.orig 2025-09-12 15:10:06.534197806 +0000 +++ backend/libinput/meson.build @@@@ -28,4 +28,8 @@@@ wlr_files += files( features += { 'libinput-backend': true } wlr_deps += libinput -internal_config.set10('HAVE_LIBINPUT_BUSTYPE', libinput.version().version_compare('>=1.26.0')) +if host_machine.system() == 'netbsd' + internal_config.set10('HAVE_LIBINPUT_BUSTYPE', false) +else + internal_config.set10('HAVE_LIBINPUT_BUSTYPE', libinput.version().version_compare('>=1.26.0')) +endif @