Changeset 20501 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Jun 12, 2009 11:31:37 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48494
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/Makefile.kmk
r20318 r20501 39 39 $(if $(VBOX_WITH_HEADLESS), VBOX_WITH_HEADLESS) \ 40 40 $(if $(VBOX_WITH_ALSA), VBOX_WITH_ALSA) \ 41 $(if $(VBOX_WITH_SOLARIS_OSS), VBOX_WITH_SOLARIS_OSS) \ 41 42 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE) \ 42 43 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000) \ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r20313 r20501 199 199 if (fSolaris) 200 200 { 201 RTPrintf( "|solaudio"); 201 RTPrintf( "|solaudio" 202 #ifdef VBOX_WITH_SOLARIS_OSS 203 "|oss" 204 #endif 205 ); 202 206 } 203 207 if (fLinux) -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r20474 r20501 1442 1442 } 1443 1443 1444 # ifdef VBOX_WITH_SOLARIS_OSS 1445 else if (!strcmp(audio, "oss")) 1446 { 1447 CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_OSS)); 1448 CHECK_ERROR(audioAdapter, COMSETTER(Enabled)(true)); 1449 } 1450 # endif 1451 1444 1452 #endif /* !RT_OS_SOLARIS */ 1445 1453 #ifdef RT_OS_DARWIN
Note:
See TracChangeset
for help on using the changeset viewer.