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

Merge pull request #12931 from haukepetersen/fix_deps_sockudpusers

make.dep: fix sock_udp deps for stnp
This commit is contained in:
Martine Lenders 2020-02-12 11:15:00 +01:00 committed by GitHub
commit ff0d2284b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@ ifneq (,$(filter nhdp,$(USEMODULE)))
endif
ifneq (,$(filter sntp,$(USEMODULE)))
USEMODULE += gnrc_sock_udp
USEMODULE += sock_udp
USEMODULE += xtimer
endif
@ -624,6 +624,9 @@ ifneq (,$(filter gnrc,$(USEMODULE)))
USEMODULE += gnrc_netif
USEMODULE += gnrc_netif_hdr
USEMODULE += gnrc_pktbuf
ifneq (,$(filter sock_udp, $(USEMODULE)))
USEMODULE += gnrc_sock_udp
endif
endif
ifneq (,$(filter gnrc_pktbuf, $(USEMODULE)))