1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sock_util: add posix dependency

`sock_util` includes the `arpa/inet.h` header so it has `posix` as a
dependency to include the `sys/posix/include` include path.
This commit is contained in:
Martine Lenders 2018-02-26 17:32:31 +01:00 committed by Martine Lenders
parent 4ea93f3aea
commit 711acf46ec

View File

@ -676,6 +676,10 @@ ifneq (,$(filter sock_dns,$(USEMODULE)))
USEMODULE += sock_util
endif
ifneq (,$(filter sock_util,$(USEMODULE)))
USEMODULE += posix
endif
ifneq (,$(filter event_%,$(USEMODULE)))
USEMODULE += event
endif