From 8394554fcaae7f1653b381d218d3db45c18863c5 Mon Sep 17 00:00:00 2001 From: ArdaFu Date: Mon, 16 Oct 2017 15:01:44 +0800 Subject: [PATCH] [components][net] In SConscript file, replace RT_USING_LWIP140 with RT_USING_LWIP141 --- components/net/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/net/SConscript b/components/net/SConscript index bfb1cb9afd..b930821bd8 100644 --- a/components/net/SConscript +++ b/components/net/SConscript @@ -7,8 +7,8 @@ objs = [] cwd = GetCurrentDir() list = os.listdir(cwd) -# the default version of LWIP is 1.4.1 -if not GetDepend('RT_USING_LWIP132') and not GetDepend('RT_USING_LWIP140') and not GetDepend('RT_USING_LWIP202'): +# the default version of LWIP is 2.0.2 +if not GetDepend('RT_USING_LWIP132') and not GetDepend('RT_USING_LWIP141') and not GetDepend('RT_USING_LWIP202'): AddDepend('RT_USING_LWIP202') for d in list: -- GitLab