diff options
author | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-25 09:55:46 +0200 |
---|---|---|
committer | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-25 09:55:46 +0200 |
commit | 74a155389c20d4e546050c756b7fa94e445e1c1d (patch) | |
tree | a629f8a0c93eb1eaafcd361a79a30a68fc66d465 /meson.build | |
parent | 3a85053e4e72e7bd19790032e5851d2a6c785e9e (diff) | |
download | wlclock-74a155389c20d4e546050c756b7fa94e445e1c1d.tar.gz wlclock-74a155389c20d4e546050c756b7fa94e445e1c1d.tar.bz2 |
Implement all configuration options and signal handling
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index bbaae41..1490611 100644 --- a/meson.build +++ b/meson.build @@ -34,9 +34,9 @@ cairo = dependency('cairo') realtime = cc.find_library('rt') if ['dragonfly', 'freebsd', 'netbsd', 'openbsd'].contains(host_machine.system()) - libepoll = dependency('epoll-shim', required: get_option('handle-signals')) + libepoll = dependency('epoll-shim', required: get_option('handle-signals')) else - libepoll = [] + libepoll = [] endif subdir('protocol') |