- Timestamp:
- May 26, 2008 1:48:23 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r9113 r9124 1477 1477 ifeq ($(KBUILD_TARGET),solaris) 1478 1478 ifeq ($(origin SOLARIS_VER),undefined) 1479 export SOLARIS_VER := $(shell uname -s)_$(subst .,_,$(shell uname -r)) 1480 endif 1481 DEFS.solaris += __$(SOLARIS_VER) 1479 export SOLARIS_VER := $(shell uname -r | $(SED_EXT) 's|\([0-9]\)\.\([0-9]\)|$$(int-add $$(int-mul 100, \1), \2)) 1480 ifeq ($(SOLARIS_VER),510) 1481 DEFS.solaris += RT_OS_SOLARIS_10 1482 # Solaris 10 does not include crossbow. 1483 VBOX_WITH_CROSSBOW = 1484 VBOX_SOLARIS_10 = 1 1485 endif 1486 DEFS.solaris += SOLARIS_VER=$(SOLARIS_VER) 1487 endif 1482 1488 endif 1483 1489 -
trunk/src/VBox/Devices/Builtins.cpp
r9113 r9124 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( __SunOS_5_10)) || defined(RT_OS_WINDOWS)205 #if defined(RT_OS_L4) || defined(RT_OS_LINUX) || defined(RT_OS_OS2) || (defined(RT_OS_SOLARIS) && !defined(RT_OS_SOLARIS_10)) || defined(RT_OS_WINDOWS) 206 206 rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostInterface); 207 207 if (VBOX_FAILURE(rc)) -
trunk/src/VBox/Devices/Makefile.kmk
r8773 r9124 610 610 Drivers_SOURCES.solaris = \ 611 611 Audio/solaudio.c \ 612 Network/DrvTAP.cpp\612 $(if $(VBOX_SOLARIS_10),,Network/DrvTAP.cpp) \ 613 613 Storage/DrvHostBase.cpp \ 614 614 Storage/DrvHostDVD.cpp -
trunk/src/VBox/Devices/Network/DrvTAP.cpp
r9113 r9124 19 19 * additional information or have any questions. 20 20 */ 21 22 #if !defined(RT_OS_SOLARIS) || !defined(__SunOS_5_10)23 21 24 22 /******************************************************************************* … … 1093 1091 NULL 1094 1092 }; 1095 1096 #endif /* !defined(RT_OS_SOLARIS) || !defined(__SunOS_5_10) */ -
trunk/src/VBox/Devices/Network/solaris/vbox-libdlpi.cpp
r9114 r9124 19 19 * additional information or have any questions. 20 20 */ 21 22 /* Solaris 10 and below has no dlpi. */23 #ifndef __SunOS_5_1024 21 25 22 #include "vbox-libdlpi.h" … … 85 82 } 86 83 } 87 88 #endif /* __SunOS_5_10 */
Note:
See TracChangeset
for help on using the changeset viewer.