diff options
author | Volodymyr Medvid <vmedvid@riseup.net> | 2018-11-15 19:01:35 +0200 |
---|---|---|
committer | Volodymyr Medvid <vmedvid@riseup.net> | 2018-11-15 19:01:43 +0200 |
commit | 04f632296f74c95c132086d3158785c1d36093e7 (patch) | |
tree | 005cbb60e4ccaf75517057e89b33c67d5beb34cd /test/meson.build | |
parent | 7c8dbcfaac6a10816a8542b5b331d205112a51a2 (diff) |
test/meson.build: run_storage depends on event lib
test/run_storage.cxx depends on EventThread/EventLoop from libevent.a.
Depend on it explicitly. This addresses build failure with
-Dtest=true -Dcurl=disabled -Ddbus=disabled
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build index 6fe6f6f29..25a8d38a1 100644 --- a/test/meson.build +++ b/test/meson.build @@ -239,6 +239,7 @@ if enable_database '../src/LogBackend.cxx', include_directories: inc, dependencies: [ + event_dep, storage_glue_dep, ], ) |