Changeset 63005 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Aug 4, 2016 8:19:20 PM (8 years ago)
- Location:
- trunk/src/VBox/Devices/Network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/lwip-new/Makefile.kmk
r62499 r63005 115 115 # add lwip's own includes 116 116 $(strip $2)_INCS += $(foreach incdir, $(LWIP_INCS), $(strip $3)/$(incdir)) 117 118 # disable lwip assertions for some build types119 $(strip $2)_DEFS.release += LWIP_NOASSERT120 $(strip $2)_DEFS.profile += LWIP_NOASSERT121 $(strip $2)_DEFS.kprofile += LWIP_NOASSERT122 117 endef 123 118 -
trunk/src/VBox/Devices/Network/lwipopts.h
r55992 r63005 2 2 #define VBOX_LWIP_OPTS_H_ 3 3 4 #include <VBox/cdefs.h> /* For VBOX_STRICT. */ 4 5 #include <iprt/mem.h> 5 6 #include <iprt/alloca.h> /* This may include malloc.h (msc), which is something that has … … 172 173 #define free(x) RTMemFree(x) 173 174 175 /* Align VBOX_STRICT and LWIP_NOASSERT. */ 176 #ifndef VBOX_STRICT 177 # define LWIP_NOASSERT 1 178 #endif 174 179 175 180 #include "lwip-namespace.h"
Note:
See TracChangeset
for help on using the changeset viewer.