From 86c9ea11177f5b95080dcba3784e20700523f642 Mon Sep 17 00:00:00 2001 From: Bernard Xiong Date: Sun, 30 Jun 2013 21:46:14 +0800 Subject: [PATCH] Use lwIP 1.4.1 as the default TCP/IP protocol stack --- components/net/SConscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/net/SConscript b/components/net/SConscript index 1357330270..c1246a601c 100644 --- a/components/net/SConscript +++ b/components/net/SConscript @@ -6,9 +6,9 @@ from building import * objs = [] list = os.listdir(os.path.join(RTT_ROOT, 'components', 'net')) -# the default version of LWIP is 1.4.0 -if not GetDepend('RT_USING_LWIP132') and not GetDepend('RT_USING_LWIP141'): - AddDepend('RT_USING_LWIP140') +# the default version of LWIP is 1.4.1 +if not GetDepend('RT_USING_LWIP132') and not GetDepend('RT_USING_LWIP140'): + AddDepend('RT_USING_LWIP141') for d in list: path = os.path.join(RTT_ROOT, 'components', 'net', d)