aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2019-01-21 09:25:11 -0500
committerLibravatar GitHub <noreply@github.com>2019-01-21 09:25:11 -0500
commit1fb6918f9ea4126d70ff3dafa0404758fb373cc9 (patch)
tree77fc19e037cae9fc955a2cb796724cc3b7793b34 /meson.build
parentFix one remaining wlr_log call (diff)
parentmeson: set minimum systemd version (diff)
downloadsway-1fb6918f9ea4126d70ff3dafa0404758fb373cc9.tar.gz
sway-1fb6918f9ea4126d70ff3dafa0404758fb373cc9.tar.zst
sway-1fb6918f9ea4126d70ff3dafa0404758fb373cc9.zip
Merge pull request #3482 from emersion/meson-systemd-version
meson: set minimum systemd version
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index f0a06b08..766bf012 100644
--- a/meson.build
+++ b/meson.build
@@ -51,8 +51,8 @@ gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf')
51pixman = dependency('pixman-1') 51pixman = dependency('pixman-1')
52libevdev = dependency('libevdev') 52libevdev = dependency('libevdev')
53libinput = dependency('libinput', version: '>=1.6.0') 53libinput = dependency('libinput', version: '>=1.6.0')
54systemd = dependency('libsystemd', required: false) 54systemd = dependency('libsystemd', version: '>=239', required: false)
55elogind = dependency('libelogind', required: false) 55elogind = dependency('libelogind', version: '>=239', required: false)
56xcb = dependency('xcb', required: get_option('xwayland')) 56xcb = dependency('xcb', required: get_option('xwayland'))
57math = cc.find_library('m') 57math = cc.find_library('m')
58rt = cc.find_library('rt') 58rt = cc.find_library('rt')