aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorsghctoma <sghctoma@gmail.com>2018-10-17 10:55:53 +0200
committersghctoma <sghctoma@gmail.com>2018-10-17 10:55:53 +0200
commit1d7cc1b38b0ebff87082f0fbb6b1354a68285295 (patch)
treeaf3c66c35f8cc77a657d71df5ce810da60455e83 /examples
parentfa587b8ea95153fb1313012cb7b76b05b4f97ab5 (diff)
Add epoll-shim dependency on FreeBSD
On FreeBSD, epoll is provided as a 3rd-party library, so it needs to be added as a dependency.
Diffstat (limited to 'examples')
-rw-r--r--examples/meson.build9
1 files changed, 8 insertions, 1 deletions
diff --git a/examples/meson.build b/examples/meson.build
index 13985e27..369c7049 100644
--- a/examples/meson.build
+++ b/examples/meson.build
@@ -6,6 +6,13 @@ libavutil = dependency('libavutil', version: '>=56.14.100', required: false)
libavcodec = dependency('libavcodec', version: '>=58.18.100', required: false)
libavformat = dependency('libavformat', version: '>=58.12.100', required: false)
+# epoll is a separate library in FreeBSD
+if host_machine.system() == 'freebsd'
+ libepoll = [dependency('epoll-shim')]
+else
+ libepoll = []
+endif
+
# Small hack until https://github.com/mesonbuild/meson/pull/3386/ is merged
foreach dep : ['libpng', 'libavutil', 'libavcodec', 'libavformat']
if not get_variable(dep).found()
@@ -97,7 +104,7 @@ examples = {
},
'input-method': {
'src': 'input-method.c',
- 'dep': [wayland_client, wlr_protos, wlroots],
+ 'dep': [wayland_client, wlr_protos, wlroots] + libepoll,
},
'text-input': {
'src': 'text-input.c',