Changeset 37198 in vbox for trunk/src/VBox
- Timestamp:
- May 24, 2011 3:10:40 PM (14 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r36942 r37198 5 5 6 6 # 7 # Copyright (C) 2006-201 0Oracle Corporation7 # Copyright (C) 2006-2011 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 159 159 ifdef VBOX_WITH_DRV_DISK_INTEGRITY 160 160 VBoxDD_DEFS += VBOX_WITH_DRV_DISK_INTEGRITY 161 endif 162 ifdef VBOX_WITH_UDPTUNNEL 163 VBoxDD_DEFS += VBOX_WITH_UDPTUNNEL 161 164 endif 162 165 ifdef VBOX_WITH_VDE … … 919 922 endif 920 923 924 ifdef VBOX_WITH_UDPTUNNEL 925 Drivers_SOURCES += \ 926 Network/DrvUDPTunnel.cpp 927 Drivers_DEFS += VBOX_WITH_UDPTUNNEL 928 endif 921 929 ifdef VBOX_WITH_VDE 922 930 Drivers_SOURCES += \ 923 931 Network/DrvVDE.cpp \ 924 932 Network/VDEPlug.cpp 925 Drivers_DEFS += \ 926 VBOX_WITH_VDE 933 Drivers_DEFS += VBOX_WITH_VDE 927 934 endif 928 935 -
trunk/src/VBox/Devices/build/VBoxDD.cpp
r35685 r37198 240 240 return rc; 241 241 #endif 242 #ifdef VBOX_WITH_UDPTUNNEL 243 rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvUDPTunnel); 244 if (RT_FAILURE(rc)) 245 return rc; 246 #endif 242 247 #ifdef VBOX_WITH_VDE 243 248 rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVDE); -
trunk/src/VBox/Devices/build/VBoxDD.h
r35685 r37198 5 5 6 6 /* 7 * Copyright (C) 2006-201 0Oracle Corporation7 * Copyright (C) 2006-2011 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 102 102 extern const PDMDRVREG g_DrvHostInterface; 103 103 #endif 104 #ifdef VBOX_WITH_UDPTUNNEL 105 extern const PDMDRVREG g_DrvUDPTunnel; 106 #endif 104 107 #ifdef VBOX_WITH_VDE 105 108 extern const PDMDRVREG g_DrvVDE;
Note:
See TracChangeset
for help on using the changeset viewer.