-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gnrc_rpl: fix dependencies #3653
Conversation
Hence, the include should not be removed, right?
|
|
Addressed. |
looks sane. Could you please also remove the |
You could also remove the |
Isn't RPL using vtimers itself too? |
Yes it is, but I assumed the dependency gets pulled in transitively? |
In general they are, but I would also strongly vote for making them explicit. fib may drop the need for timers in a theoretical future version. |
makes sense. never mind then, forget what I wrote before |
Removed the |
I am fine with the changes. ACK. Fixup please |
05e025f
to
d292e3c
Compare
Squashed. |
please rememove the extra |
The dependency conditional for RPL was at the very end of `Makefile.dep`, giving depending modules no chance to pull in their dependencies. Also it pulled in the deprecated module `net_help`, though it did not use any of it's functions (it just included `inet_pton.h` for `AF_INET6`).
d292e3c
to
4283b15
Compare
Done. |
Follow-up to #3050.
The dependency conditional for RPL was at the very end of
Makefile.dep
, giving depending modules no chance to pull in their dependencies (rpl just lists them as dependencies too).Also it pulled in the deprecated module
net_help
, though it did not use any of it's functions (it just includedinet_pton.h
forAF_INET6
).