wlmaker icon indicating copy to clipboard operation
wlmaker copied to clipboard

Drop dependency on unreleased libwayland version

Open jbeich opened this issue 1 year ago • 0 comments

Probably a remnant from tracking wlroots snapshot. wlmaker builds and works fine on FreeBSD with only system dependencies (except libbase).

downgrade version check
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d2e0306..32f70d2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -37,9 +37,9 @@ FIND_PACKAGE(PkgConfig REQUIRED)
 PKG_CHECK_MODULES(CAIRO REQUIRED IMPORTED_TARGET cairo>=1.16.0)
 PKG_CHECK_MODULES(
   WAYLAND REQUIRED IMPORTED_TARGET
-  wayland-client>=1.22.90
+  wayland-client>=1.22.0
   wayland-protocols>=1.31
-  wayland-server>=1.22.90)
+  wayland-server>=1.22.0)
 PKG_GET_VARIABLE(WAYLAND_PROTOCOL_DIR wayland-protocols pkgdatadir)
 PKG_CHECK_MODULES(WLROOTS REQUIRED IMPORTED_TARGET wlroots>=0.17)
 PKG_CHECK_MODULES(XKBCOMMON REQUIRED IMPORTED_TARGET xkbcommon>=1.0.3)  # 1.4.1)

jbeich avatar Jan 24 '24 10:01 jbeich