diff options
author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2024-05-24 17:00:23 +0900 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-07-03 18:41:26 +0200 |
commit | 7b1070a7e17cc65c3134350728c85e1d218c3578 (patch) | |
tree | 7bcb7100f9ec1c4878044413cbc234918ee8eabc /storage-daemon | |
parent | 414b180d42315dc77c02170f1eee8db58c9fe052 (diff) |
Revert "meson: Propagate gnutls dependency"
This reverts commit 3eacf70bb5a83e4775ad8003cbca63a40f70c8c2.
It was only needed because of duplicate objects caused by
declare_dependency(link_whole: ...), and can be dropped now
that meson.build specifies objects and dependencies separately
for the internal dependencies.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Message-ID: <20240524-objects-v1-2-07cbbe96166b@daynix.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'storage-daemon')
-rw-r--r-- | storage-daemon/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage-daemon/meson.build b/storage-daemon/meson.build index fd5e32f4b2..5e61a9d1bd 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, gnutls) +qsd_ss.add(blockdev, chardev, qmp, qom, qemuutil) subdir('qapi') |