There is no probing in configure, so no need to pass them as variables to meson.
Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> --- meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/meson.build b/meson.build index be0a9975bf..2d23c01753 100644 --- a/meson.build +++ b/meson.build @@ -62,6 +62,14 @@ elif host_machine.system() == 'darwin' iokit = dependency('appleframeworks', modules: 'IOKit') cocoa = dependency('appleframeworks', modules: 'Cocoa') hvf = dependency('appleframeworks', modules: 'Hypervisor') +elif host_machine.system() == 'sunos' + socket = [cc.find_library('socket'), + cc.find_library('nsl'), + cc.find_library('resolv')] +elif host_machine.system() == 'haiku' + socket = [cc.find_library('posix_error_mapper'), + cc.find_library('network'), + cc.find_library('bsd')] endif glib = declare_dependency(compile_args: config_host['GLIB_CFLAGS'].split(), link_args: config_host['GLIB_LIBS'].split()) -- 2.26.2