- Timestamp:
- May 26, 2008 10:11:34 AM (17 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Builtins.cpp
r8155 r9112 203 203 return rc; 204 204 #endif 205 #if defined(RT_OS_L4) || defined(RT_OS_LINUX) || defined(RT_OS_OS2) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS)205 #if defined(RT_OS_L4) || defined(RT_OS_LINUX) || defined(RT_OS_OS2) || (defined(RT_OS_SOLARIS) && !defined(__SunOS_5.10)) || defined(RT_OS_WINDOWS) 206 206 rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostInterface); 207 207 if (VBOX_FAILURE(rc)) -
trunk/src/VBox/Devices/Network/DrvTAP.cpp
r9087 r9112 20 20 */ 21 21 22 #if !defined(RT_OS_SOLARIS) || SOLARIS2 >= 1122 #if !defined(RT_OS_SOLARIS) || !defined(__SunOS_5.10) 23 23 24 24 /******************************************************************************* … … 1094 1094 }; 1095 1095 1096 #endif /* !defined(RT_OS_SOLARIS) || SOLARIS2 >= 11*/1096 #endif /* !defined(RT_OS_SOLARIS) || !defined(__SunOS_5.10) */ -
trunk/src/VBox/Devices/Network/solaris/vbox-libdlpi.cpp
r9087 r9112 21 21 22 22 /* Solaris 10 and below has no dlpi. */ 23 #if SOLARIS2 >= 1123 #ifndef __SunOS_5.10 24 24 25 25 #include "vbox-libdlpi.h" … … 86 86 } 87 87 88 #endif /* SOLARIS2 >= 11*/88 #endif /* __SunOS_5.10 */
Note:
See TracChangeset
for help on using the changeset viewer.