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 endif
ifneq (,$(filter sntp,$(USEMODULE))) ifneq (,$(filter sntp,$(USEMODULE)))
USEMODULE += gnrc_sock_udp USEMODULE += sock_udp
USEMODULE += xtimer USEMODULE += xtimer
endif endif
@ -624,6 +624,9 @@ ifneq (,$(filter gnrc,$(USEMODULE)))
USEMODULE += gnrc_netif USEMODULE += gnrc_netif
USEMODULE += gnrc_netif_hdr USEMODULE += gnrc_netif_hdr
USEMODULE += gnrc_pktbuf USEMODULE += gnrc_pktbuf
ifneq (,$(filter sock_udp, $(USEMODULE)))
USEMODULE += gnrc_sock_udp
endif
endif endif
ifneq (,$(filter gnrc_pktbuf, $(USEMODULE))) ifneq (,$(filter gnrc_pktbuf, $(USEMODULE)))