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

lwip_sock: depend on sock pseudo-modules

This commit is contained in:
Martine Lenders 2016-10-27 12:04:35 +02:00 committed by Martine Lenders
parent c36aa8c30d
commit 14ed6d2b90
No known key found for this signature in database
GPG Key ID: 8E97A9FE55F25D62

View File

@ -430,14 +430,17 @@ endif
ifneq (,$(filter lwip_sock_ip,$(USEMODULE)))
USEMODULE += lwip_raw
USEMODULE += sock_ip
endif
ifneq (,$(filter lwip_sock_tcp,$(USEMODULE)))
USEMODULE += lwip_tcp
USEMODULE += sock_tcp
endif
ifneq (,$(filter lwip_sock_udp,$(USEMODULE)))
USEMODULE += lwip_udp
USEMODULE += sock_udp
endif
ifneq (,$(filter lwip_%,$(USEMODULE)))