Commit 772681f2 authored by Thomas Zander's avatar Thomas Zander

Fix link_args for mDNSResponder on non-darwin platforms

parent 1862a98a
......@@ -31,7 +31,11 @@ if zeroconf_option == 'bonjour'
error('dns_sd.h not found')
endif
if is_darwin
bonjour_dep = declare_dependency(link_args: ['-framework', 'dnssd'])
else
bonjour_dep = declare_dependency(link_args: ['-ldns_sd'])
endif
conf.set('HAVE_BONJOUR', true)
zeroconf = static_library(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment