From b61f139956a9dfab052dbec0522fd53c8deae26b Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Wed, 6 Feb 2019 17:49:48 +0100 Subject: [PATCH] gnrc_sixlowpan: move gnrc_ipv6 dependency to gnrc_sixlowpan_iphc Cenk and I put some effort into making 6LoWPAN work without IPv6; except for when used with the IPv6 header compression of course. This is why `gnrc_ipv6` is only really *required* by `gnrc_sixlowpan_iphc` now. With this change the `gnrc_ipv6` dependency is moved from the `gnrc_sixlowpan` module to the `gnrc_sixlowpan_iphc` module. --- Makefile.dep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.dep b/Makefile.dep index 5b5664a27b..ec4dfe88b5 100644 --- a/Makefile.dep +++ b/Makefile.dep @@ -207,13 +207,13 @@ ifneq (,$(filter gnrc_sixlowpan_frag,$(USEMODULE))) endif ifneq (,$(filter gnrc_sixlowpan_iphc,$(USEMODULE))) + USEMODULE += gnrc_ipv6 USEMODULE += gnrc_sixlowpan USEMODULE += gnrc_sixlowpan_ctx USEMODULE += gnrc_sixlowpan_iphc_nhc endif ifneq (,$(filter gnrc_sixlowpan,$(USEMODULE))) - USEMODULE += gnrc_ipv6 USEMODULE += sixlowpan endif