diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-07 20:38:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-07 20:38:22 -0400 |
commit | 2e41804b5473c04626ceda27e13b58a329d211d4 (patch) | |
tree | dc0e14ab5eb3598f53476396d5b1bba9c2a07578 | |
parent | 4b200869b2769a41d087c70e3e80124b2ed51064 (diff) | |
parent | b24b319bdfb3e94d16950d7fdeadba990bb91a2d (diff) | |
download | sway-2e41804b5473c04626ceda27e13b58a329d211d4.tar.xz |
Merge pull request #1772 from bpinto/feature/improve-dependency-check
Improve dependency check for libinput
-rw-r--r-- | meson.build | 2 |
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') gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: false) pixman = dependency('pixman-1') libcap = dependency('libcap') -libinput = dependency('libinput') +libinput = dependency('libinput', version: '>=1.6.0') libpam = cc.find_library('libpam') math = cc.find_library('m') rt = cc.find_library('rt') |