diff options
author | Michael Heimpold <mhei@heimpold.de> | 2023-11-11 16:38:03 +0100 |
---|---|---|
committer | Michael Heimpold <mhei@heimpold.de> | 2023-11-11 16:38:08 +0100 |
commit | 45f9302afe21ec98cdd43b37feb46a0408a7aaab (patch) | |
tree | f86d92012016c0d6982a55148cf83b11b3dcf8e4 /net/gensio | |
parent | 6b4a197c8c1000e6e0ea650fe4e24769cc603e99 (diff) |
gensio: prevent accidental use of dns_sd
Buildbots spottet this error that when dns_sd library is
available, then gensio's configure will pick it up.
This is not desired since we already link to libavahi
for the mdns stuff, so let's disable dnssd lookup explicitly.
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Diffstat (limited to 'net/gensio')
-rw-r--r-- | net/gensio/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/gensio/Makefile b/net/gensio/Makefile index 6fca78e9c..500d95817 100644 --- a/net/gensio/Makefile +++ b/net/gensio/Makefile @@ -49,6 +49,7 @@ CONFIGURE_ARGS += \ --without-afskmdm \ --without-ax25 \ --without-alsa \ + --without-dnssd \ --without-go \ --without-ipmisol \ --without-kiss \ |