From 6f6598586deb4b0f63b672b1827ae969263ab390 Mon Sep 17 00:00:00 2001 From: "Martine S. Lenders" Date: Fri, 28 Aug 2020 20:02:56 +0200 Subject: [PATCH] gnrc_ipv6_nib: don't pull in RDNSS support with sock_dns Just because a user pulls in the DNS client (`sock_dns`) doesn't mean they want to pull in RDNSS option support as well. Besides, since `gnrc_ipv6_nib_dns` depends on `gnrc_ipv6_nib`, this forms a circular dependency that really isn't necessary. --- Makefile.dep | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile.dep b/Makefile.dep index 1e2081fc54..27baca8daf 100644 --- a/Makefile.dep +++ b/Makefile.dep @@ -418,9 +418,6 @@ ifneq (,$(filter gnrc_ipv6_nib,$(USEMODULE))) USEMODULE += gnrc_netif USEMODULE += ipv6_addr USEMODULE += random - ifneq (,$(filter sock_dns,$(USEMODULE))) - USEMODULE += gnrc_ipv6_nib_dns - endif endif ifneq (,$(filter gnrc_udp,$(USEMODULE)))