virtualbox: fix audio driver loading (#136048)
virtualbox: fix audio driver loading fixes #123851 patch by @jcumming
This commit is contained in:
parent
0ecf2a99dd
commit
c97f15e81a
2 changed files with 28 additions and 0 deletions
|
@ -97,6 +97,8 @@ in stdenv.mkDerivation {
|
|||
# Temporary workaround for broken build
|
||||
# https://www.virtualbox.org/pipermail/vbox-dev/2021-July/015670.html
|
||||
./fix-configure-pkgconfig-qt.patch
|
||||
# https://github.com/NixOS/nixpkgs/issues/123851
|
||||
./fix-audio-driver-loading.patch
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
diff --git a/src/VBox/Devices/Audio/DrvHostAudioAlsaStubs.cpp b/src/VBox/Devices/Audio/DrvHostAudioAlsaStubs.cpp
|
||||
index cfcb0abbf..2ce564f6f 100644
|
||||
--- a/src/VBox/Devices/Audio/DrvHostAudioAlsaStubs.cpp
|
||||
+++ b/src/VBox/Devices/Audio/DrvHostAudioAlsaStubs.cpp
|
||||
@@ -258,7 +258,7 @@ static DECLCALLBACK(int32_t) drvHostAudioAlsaLibInitOnce(void *pvUser)
|
||||
LogFlowFunc(("\n"));
|
||||
|
||||
RTLDRMOD hMod = NIL_RTLDRMOD;
|
||||
- int rc = RTLdrLoadSystemEx(VBOX_ALSA_LIB, RTLDRLOAD_FLAGS_NO_UNLOAD, &hMod);
|
||||
+ int rc = RTLdrLoad(VBOX_ALSA_LIB, &hMod);
|
||||
if (RT_SUCCESS(rc))
|
||||
{
|
||||
for (uintptr_t i = 0; i < RT_ELEMENTS(SharedFuncs); i++)
|
||||
diff --git a/src/VBox/Devices/Audio/DrvHostAudioPulseAudioStubs.cpp b/src/VBox/Devices/Audio/DrvHostAudioPulseAudioStubs.cpp
|
||||
index a17fc93f9..148f5c39a 100644
|
||||
--- a/src/VBox/Devices/Audio/DrvHostAudioPulseAudioStubs.cpp
|
||||
+++ b/src/VBox/Devices/Audio/DrvHostAudioPulseAudioStubs.cpp
|
||||
@@ -332,7 +332,7 @@ static DECLCALLBACK(int32_t) drvHostAudioPulseLibInitOnce(void *pvUser)
|
||||
LogFlowFunc(("\n"));
|
||||
|
||||
RTLDRMOD hMod = NIL_RTLDRMOD;
|
||||
- int rc = RTLdrLoadSystemEx(VBOX_PULSE_LIB, RTLDRLOAD_FLAGS_NO_UNLOAD, &hMod);
|
||||
+ int rc = RTLdrLoad(VBOX_PULSE_LIB, &hMod);
|
||||
if (RT_SUCCESS(rc))
|
||||
{
|
||||
for (unsigned i = 0; i < RT_ELEMENTS(g_aImportedFunctions); i++)
|
Loading…
Reference in a new issue