儲存庫 vbox 的更動 50058
- 時間撮記:
- 2014-1-13 上午03:58:29 (11 年 以前)
- 位置:
- trunk/src/VBox/Devices
- 檔案:
-
- 修改 2 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Devices/Makefile.kmk
r49983 r50058 375 375 VBoxDD, Network/lwip-new)) 376 376 $(eval $(call def_vbox_lwip_flags, \ 377 Network/DevINIP.cpp, Network/lwip-new))377 VBoxDD, Network/DevINIP.cpp, Network/lwip-new)) 378 378 endif 379 379 endif # VBOX_WITH_INIP … … 450 450 Storage/DrvVD.cpp_DEFS += VBOX_WITH_NEW_LWIP 451 451 $(eval $(call def_vbox_lwip_flags, \ 452 Storage/DrvVD.cpp, Network/lwip-new))452 VBoxDD, Storage/DrvVD.cpp, Network/lwip-new)) 453 453 else 454 454 Storage/DrvVD.cpp_INCS = $(LWIP_INCS) -
trunk/src/VBox/Devices/Network/lwip-new/Makefile.kmk
r50057 r50058 95 95 96 96 97 97 98 define _def_vbox_lwip_use # VAR_BaseName, path/to/lwip/dir 98 99 $(strip $1)_SOURCES += \ … … 103 104 endef 104 105 105 define def_vbox_lwip_flags # VAR_BaseName, path/to/lwip/dir 106 $(strip $1)_INCS += $(foreach incdir, $(LWIP_INCS), $(strip $2)/$(incdir)) 106 107 define def_vbox_lwip_flags # PROTO_BaseName, VAR_BaseName, path/to/lwip/dir 108 # add anything configured for the component via PROTO_BaseName 109 $(foreach suffix, INCS DEFS, 110 $(if $(value $(strip $1)_LWIP_$(suffix)), 111 $(eval # 112 $(strip $2)_$(suffix) += $(value $(strip $1)_LWIP_$(suffix)) 113 ))) 114 115 # add lwip's own includes 116 $(strip $2)_INCS += $(foreach incdir, $(LWIP_INCS), $(strip $3)/$(incdir)) 107 117 endef 118 108 119 109 120 ### … … 117 128 define def_vbox_lwip_public # VAR_BaseName, path/to/lwip/dir 118 129 $(eval $(call _def_vbox_lwip_use, $1, $2)) 119 $(eval $(call def_vbox_lwip_flags, $1, $ 2))130 $(eval $(call def_vbox_lwip_flags, $1, $1, $2)) 120 131 endef 132 121 133 122 134 ### … … 131 143 $(eval $(call _def_vbox_lwip_use, $1, $2)) 132 144 $(foreach file, $(LWIP_SOURCES), \ 133 $(eval $(call def_vbox_lwip_flags, $ (strip $2)/$(file), $2)))145 $(eval $(call def_vbox_lwip_flags, $1, $(strip $2)/$(file), $2))) 134 146 endef 135 147
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器