summaryrefslogtreecommitdiffstats
path: root/storage-daemon
diff options
context:
space:
mode:
authorRoman Bolshakov2021-01-02 13:52:13 +0100
committerPaolo Bonzini2021-01-12 12:38:03 +0100
commit3eacf70bb5a83e4775ad8003cbca63a40f70c8c2 (patch)
tree1c2ea1a0fba521aa57e05054e24346777ca3d18b /storage-daemon
parentDocs/RCU: Correct sample code of qatomic_rcu_set (diff)
downloadqemu-3eacf70bb5a83e4775ad8003cbca63a40f70c8c2.tar.gz
qemu-3eacf70bb5a83e4775ad8003cbca63a40f70c8c2.tar.xz
qemu-3eacf70bb5a83e4775ad8003cbca63a40f70c8c2.zip
meson: Propagate gnutls dependency
crypto/tlscreds.h includes GnuTLS headers if CONFIG_GNUTLS is set, but GNUTLS_CFLAGS, that describe include path, are not propagated transitively to all users of crypto and build fails if GnuTLS headers reside in non-standard directory (which is a case for homebrew on Apple Silicon). Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com> Message-Id: <20210102125213.41279-1-r.bolshakov@yadro.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'storage-daemon')
-rw-r--r--storage-daemon/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage-daemon/meson.build b/storage-daemon/meson.build
index c5adce81c3..68852f3d25 100644
--- a/storage-daemon/meson.build
+++ b/storage-daemon/meson.build
@@ -1,6 +1,6 @@
qsd_ss = ss.source_set()
qsd_ss.add(files('qemu-storage-daemon.c'))
-qsd_ss.add(blockdev, chardev, qmp, qom, qemuutil)
+qsd_ss.add(blockdev, chardev, qmp, qom, qemuutil, gnutls)
subdir('qapi')