lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-users] [PATCH 5/7] lwip: fix build error with LWIP_UDP=0


From: address@hidden
Subject: [lwip-users] [PATCH 5/7] lwip: fix build error with LWIP_UDP=0
Date: Fri, 21 Sep 2007 02:29:03 +0000

lwip: fix build error with LWIP_UDP=0
---
 user/e7/comms/lwip/include/lwip/opt.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/user/e7/comms/lwip/include/lwip/opt.h 
b/user/e7/comms/lwip/include/lwip/opt.h
index 39d7905..e1ccb65 100644
--- a/user/e7/comms/lwip/include/lwip/opt.h
+++ b/user/e7/comms/lwip/include/lwip/opt.h
@@ -540,7 +540,7 @@
  * LWIP_UDPLITE==1: Turn on UDP-Lite. (Requires LWIP_UDP)
  */
 #ifndef LWIP_UDPLITE
-#define LWIP_UDPLITE                    1
+#define LWIP_UDPLITE                    (LWIP_UDP)
 #endif
 
 /**
-- 
1.5.2.1







reply via email to

[Prev in Thread] Current Thread [Next in Thread]