From e1e1f13d61fb50d0abc8b01b27868d68cc425e2a Mon Sep 17 00:00:00 2001 From: "bernard.xiong@gmail.com" Date: Sun, 1 Apr 2012 07:02:06 +0000 Subject: [PATCH] uses lwip 1.4.0 in default. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2009 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/net/lwip-1.4.0/SConscript | 4 +--- components/net/lwip/SConscript | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/components/net/lwip-1.4.0/SConscript b/components/net/lwip-1.4.0/SConscript index c18155fd72..53459a9e42 100644 --- a/components/net/lwip-1.4.0/SConscript +++ b/components/net/lwip-1.4.0/SConscript @@ -84,8 +84,6 @@ if GetDepend(['RT_LWIP_PPP']): if GetDepend(['RT_USING_NETUTILS']): src += Glob('./apps/*.c') -# group = DefineGroup('LwIP', src, depend = ['RT_USING_LWIP'], CPPPATH = path) -# Switch to this branch after lwip1.4 is stable enough. -group = DefineGroup('LwIP', src, depend = ['NOT_USED'], CPPPATH = path) +group = DefineGroup('LwIP', src, depend = ['RT_USING_LWIP'], CPPPATH = path) Return('group') diff --git a/components/net/lwip/SConscript b/components/net/lwip/SConscript index 8fe3dfa8f6..d74b3451e9 100644 --- a/components/net/lwip/SConscript +++ b/components/net/lwip/SConscript @@ -82,6 +82,6 @@ if GetDepend(['RT_LWIP_PPP']): if GetDepend(['RT_USING_NETUTILS']): src += Glob('./apps/*.c') -group = DefineGroup('LwIP', src, depend = ['RT_USING_LWIP'], CPPPATH = path) +group = DefineGroup('LwIP', src, depend = ['RT_USING_LWIP', 'RT_USING_LWIP132'], CPPPATH = path) Return('group') -- GitLab