From 075b095271f89dd6bad03cd696333c18304abf46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 1 Dec 2019 17:35:04 +0100 Subject: [PATCH] PKGBUILD/meson: add version requirements to tllist+fcft --- PKGBUILD | 2 +- PKGBUILD.wayland-only | 2 +- meson.build | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index a5bb698..68553a9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -15,7 +15,7 @@ depends=( 'libudev.so' 'json-c' 'libmpdclient' - 'tllist' 'fcft') + 'tllist>=1.0.0' 'fcft>=0.1.0') optdepends=('xcb-util-errors: better X error messages') source=() diff --git a/PKGBUILD.wayland-only b/PKGBUILD.wayland-only index 70fe248..72700f5 100644 --- a/PKGBUILD.wayland-only +++ b/PKGBUILD.wayland-only @@ -16,7 +16,7 @@ depends=( 'libudev.so' 'json-c' 'libmpdclient' - 'tllist' 'fcft') + 'tllist>=1.0.0' 'fcft>=0.1.0') source=() pkgver() { diff --git a/meson.build b/meson.build index c07298c..ddeacd8 100644 --- a/meson.build +++ b/meson.build @@ -35,8 +35,8 @@ wlroots = dependency('wlroots', required: get_option('backend-wayland')) backend_wayland = wayland_client.found() and wayland_cursor.found() and wlroots.found() # "My" dependencies, fallback to subproject -tllist = dependency('tllist', fallback: ['tllist', 'tllist']) -fcft = dependency('fcft', fallback: ['fcft', 'fcft']) +tllist = dependency('tllist', version: '>=1.0.0', fallback: ['tllist', 'tllist']) +fcft = dependency('fcft', version: '>=0.1.0', fallback: ['fcft', 'fcft']) add_project_arguments( ['-D_GNU_SOURCE'] +