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

sock_util: remove sock_udp dependency

`sock_util` only uses the `sock_udp_ep_t` type which does not require
`sock_udp` to be pulled in.
This commit is contained in:
Martine S. Lenders 2020-08-31 15:23:51 +02:00
parent 4696a773de
commit 29d60c8c2f
No known key found for this signature in database
GPG Key ID: CCD317364F63286F

View File

@ -850,6 +850,7 @@ ifneq (,$(filter sock_async_event,$(USEMODULE)))
endif
ifneq (,$(filter sock_dns,$(USEMODULE)))
USEMODULE += sock_udp
USEMODULE += sock_util
USEMODULE += posix_headers
endif
@ -857,7 +858,6 @@ endif
ifneq (,$(filter sock_util,$(USEMODULE)))
USEMODULE += posix_inet
USEMODULE += fmt
USEMODULE += sock_udp
endif
ifneq (,$(filter event_%,$(USEMODULE)))
@ -905,6 +905,7 @@ ifneq (,$(filter gcoap,$(USEMODULE)))
USEMODULE += nanocoap
USEMODULE += sock_async
USEMODULE += sock_async_event
USEMODULE += sock_udp
USEMODULE += sock_util
USEMODULE += event_callback
USEMODULE += event_timeout