aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-04-07 20:38:22 -0400
committerLibravatar GitHub <noreply@github.com>2018-04-07 20:38:22 -0400
commit2e41804b5473c04626ceda27e13b58a329d211d4 (patch)
treedc0e14ab5eb3598f53476396d5b1bba9c2a07578
parentMerge pull request #1767 from emersion/fix-dmenu (diff)
parentImprove dependency checks (diff)
downloadsway-2e41804b5473c04626ceda27e13b58a329d211d4.tar.gz
sway-2e41804b5473c04626ceda27e13b58a329d211d4.tar.zst
sway-2e41804b5473c04626ceda27e13b58a329d211d4.zip
Merge pull request #1772 from bpinto/feature/improve-dependency-check
Improve dependency check for libinput
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 5a37b0e2..bf266e5f 100644
--- a/meson.build
+++ b/meson.build
@@ -35,7 +35,7 @@ pangocairo = dependency('pangocairo')
35gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: false) 35gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: false)
36pixman = dependency('pixman-1') 36pixman = dependency('pixman-1')
37libcap = dependency('libcap') 37libcap = dependency('libcap')
38libinput = dependency('libinput') 38libinput = dependency('libinput', version: '>=1.6.0')
39libpam = cc.find_library('libpam') 39libpam = cc.find_library('libpam')
40math = cc.find_library('m') 40math = cc.find_library('m')
41rt = cc.find_library('rt') 41rt = cc.find_library('rt')