1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-30 07:29:29 +02:00

Bug1338: PATCH WXWIDGETS to fix hanging Voxengo plug-in on Mac...

... This is an unusual fix!  The fix is in the build procedure, as described
in mac/Build.txt, not in Audacity's own code.
This commit is contained in:
Paul Licameli 2016-06-23 00:45:52 -04:00
parent ad711e783b
commit 9dcb2c87c3
2 changed files with 17 additions and 0 deletions

View File

@ -36,6 +36,7 @@ http://forum.audacityteam.org/viewtopic.php?p=303835#p303835 .
cd wxWidgets-3.0.2
patch -p0 -i <path to Audacity source>/mac/wxMac_additions/wxMac-3.0.2-fixes.patch .
patch -p0 -i <path to Audacity source>/mac/wxMac_additions/eventloops.patch .
10) And finally build/install wxWidgets:

View File

@ -0,0 +1,16 @@
diff --git a/src/osx/core/evtloop_cf.cpp b/src/osx/core/evtloop_cf.cpp
index 7e70dec..37b22b5 100644
--- a/src/osx/core/evtloop_cf.cpp
+++ b/src/osx/core/evtloop_cf.cpp
@@ -243,7 +243,7 @@ int wxCFEventLoop::DoProcessEvents()
}
else
#endif
- return DispatchTimeout( m_isInsideYield ? 0 : 1000 );
+ return DispatchTimeout( 0 );
}
bool wxCFEventLoop::Dispatch()
--
2.3.2 (Apple Git-55)