Use lwIP 1.4.1 as the default TCP/IP protocol stack

This commit is contained in:
Bernard Xiong 2013-06-30 21:46:14 +08:00
parent 91ee1e07cf
commit 86c9ea1117
1 changed files with 3 additions and 3 deletions

View File

@ -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)