migration: remove unnecessary zlib dependency

zlib code is only used by the emulators, not by the tests.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2024-05-24 18:16:08 +02:00
parent ae9433fb11
commit 70eb5fde05
4 changed files with 2 additions and 4 deletions

View file

@ -3696,7 +3696,7 @@ libmigration = static_library('migration', sources: migration_files + genh,
name_suffix: 'fa',
build_by_default: false)
migration = declare_dependency(link_with: libmigration,
dependencies: [zlib, qom, io])
dependencies: [qom, io])
system_ss.add(migration)
block_ss = block_ss.apply({})