fix lwip compiling error

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2024 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
luohui2320@gmail.com 2012-04-08 10:48:48 +00:00
parent ce4ef74ef4
commit 95bcaa08d5
1 changed files with 6 additions and 6 deletions

View File

@ -67,18 +67,18 @@ src/netif/ppp/vj.c
""") """)
# The set of source files associated with this SConscript file. # The set of source files associated with this SConscript file.
path = [RTT_ROOT + '/components/net/lwip-1.4.0/src', path = [RTT_ROOT + '/components/net/lwip/src',
RTT_ROOT + '/components/net/lwip-1.4.0/src/include', RTT_ROOT + '/components/net/lwip/src/include',
RTT_ROOT + '/components/net/lwip-1.4.0/src/include/ipv4', RTT_ROOT + '/components/net/lwip/src/include/ipv4',
RTT_ROOT + '/components/net/lwip-1.4.0/src/arch/include', RTT_ROOT + '/components/net/lwip/src/arch/include',
RTT_ROOT + '/components/net/lwip-1.4.0/src/include/netif'] RTT_ROOT + '/components/net/lwip/src/include/netif']
if GetDepend(['RT_LWIP_SNMP']): if GetDepend(['RT_LWIP_SNMP']):
src += snmp_src src += snmp_src
if GetDepend(['RT_LWIP_PPP']): if GetDepend(['RT_LWIP_PPP']):
src += ppp_src src += ppp_src
path += [RTT_ROOT + '/components/net/lwip-1.4.0/src/netif/ppp'] path += [RTT_ROOT + '/components/net/lwip/src/netif/ppp']
# For testing apps # For testing apps
if GetDepend(['RT_USING_NETUTILS']): if GetDepend(['RT_USING_NETUTILS']):