blob: b3ba3993fe3d7619d4bc1b5e6896321f41160871 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp.orig 2020-05-13 19:43:27 UTC
+++ src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
@@ -622,7 +622,7 @@ void printUsage(USAGECATEGORY fCategory, uint32_t fSub
RTStrmPrintf(pStrm, "|dsound");
#endif
}
- if (fLinux || fSolaris)
+ if (fLinux || fFreeBSD || fSolaris)
{
RTStrmPrintf(pStrm, ""
#ifdef VBOX_WITH_AUDIO_OSS
@@ -635,22 +635,6 @@ void printUsage(USAGECATEGORY fCategory, uint32_t fSub
"|pulse"
#endif
);
- }
- if (fFreeBSD)
- {
-#ifdef VBOX_WITH_AUDIO_OSS
- /* Get the line break sorted when dumping all option variants. */
- if (fDumpOpts)
- {
- RTStrmPrintf(pStrm, "|\n"
- " oss");
- }
- else
- RTStrmPrintf(pStrm, "|oss");
-#endif
-#ifdef VBOX_WITH_AUDIO_PULSE
- RTStrmPrintf(pStrm, "|pulse");
-#endif
}
if (fDarwin)
{
|