Changeset 4841 in vbox
- Timestamp:
- Sep 17, 2007 5:42:47 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 24556
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/Makefile.kmk
r4637 r4841 64 64 VBoxSDL_LIBS.linux = \ 65 65 $(LIB_XCURSOR) 66 VBoxSDL_LDFLAGS.darwin = \ 67 -framework Foundation -framework AppKit 66 VBoxSDL_LIBS.solaris = \ 67 $(LIB_XCURSOR) \ 68 $(LIB_X11) 68 69 ifdef VBOX_OPENGL 69 70 #VBoxSDL_LIBS.linux += GL … … 71 72 VBoxSDL_LIBPATH.linux = \ 72 73 $(VBOX_LIBPATH_X11) 74 VBoxSDL_LIBPATH.solaris = \ 75 $(VBOX_LIBPATH_X11) 76 VBoxSDL_LDFLAGS.darwin = \ 77 -framework Foundation -framework AppKit 73 78 74 79 VBoxSDL_CLEAN = $(PATH_VBoxSDL)/Ico64x01.h … … 101 106 tstSDL_LIBS.linux += GL 102 107 endif 108 tstSDL_LDFLAGS.darwin = \ 109 -framework Foundation -framework AppKit 103 110 tstSDL_LIBPATH.linux = \ 104 111 $(VBOX_LIBPATH_X11) 105 tstSDL_L DFLAGS.darwin= \106 -framework Foundation -framework AppKit112 tstSDL_LIBPATH.solaris = \ 113 $(VBOX_LIBPATH_X11) 107 114 108 115 tstSDL_CXXFLAGS.win = \ -
trunk/src/VBox/Main/ConsoleImpl.cpp
r4540 r4841 5222 5222 /** @todo Implement tap networking for OS/2. */ 5223 5223 int rcVBox = VERR_NOT_IMPLEMENTED; 5224 #elif defined(RT_OS_SOLARIS) 5225 /** @todo Implemented tap networking for Solaris. */ 5226 int rcVBox = VERR_NOT_IMPLEMENTED; 5224 5227 #elif defined(VBOX_WITH_UNIXY_TAP_NETWORKING) 5225 5228 # error "PORTME: Implement OS specific TAP interface open/creation." -
trunk/src/VBox/Main/Makefile.kmk
r4426 r4841 457 457 VBOX_XML_SCHEMA.win = xml/VirtualBox-settings-windows.xsd 458 458 VBOX_XML_SCHEMA.os2 = xml/VirtualBox-settings-os2.xsd 459 VBOX_XML_SCHEMA.solaris= xml/VirtualBox-settings-solaris.xsd 459 460 460 461 VirtualBoxXMLUtil.cpp_DEPS = $(VBOX_XML_ENTITIES) $(VBOX_XML_ENTITIES_COMMON) -
trunk/src/VBox/Main/include/VirtualBoxXMLUtil.h
r4071 r4841 40 40 #elif defined (RT_OS_OS2) 41 41 # define VBOX_XML_PLATFORM "os2" 42 #elif defined (RT_OS_SOLARIS) 43 # define VBOX_XML_PLATFORM "solaris" 42 44 #else 43 45 # error Unsupported platform! -
trunk/src/VBox/Main/xml/VirtualBox-settings-solaris.xsd
r4831 r4841 4 4 * :folding=explicit:collapseFolds=1: 5 5 * 6 * innotek VirtualBox Settings Schema Version 1.0- linux6 * innotek VirtualBox Settings Schema Version 1.0-solaris 7 7 8 8 Copyright (C) 2004-2007 innotek GmbH … … 27 27 <xsd:annotation> 28 28 <xsd:documentation xml:lang="en"> 29 innotek VirtualBox Settings Schema Version 1.0- linux.29 innotek VirtualBox Settings Schema Version 1.0-solaris. 30 30 Copyright (c) 2004-2007 innotek GmbH. 31 31 </xsd:documentation> … … 92 92 <xsd:restriction base="xsd:token"> 93 93 <xsd:enumeration value="null"/> 94 <xsd:enumeration value="oss"/> 95 <xsd:enumeration value="alsa"/> 94 <xsd:enumeration value="esd"/> 96 95 </xsd:restriction> 97 96 </xsd:simpleType> … … 108 107 <xsd:complexContent> 109 108 <xsd:extension base="TVirtualBox"> 110 <xsd:attribute name="version" type="xsd:token" fixed="1.2- linux" use="required"/>109 <xsd:attribute name="version" type="xsd:token" fixed="1.2-solaris" use="required"/> 111 110 </xsd:extension> 112 111 </xsd:complexContent>
Note:
See TracChangeset
for help on using the changeset viewer.