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:
parent
ad711e783b
commit
9dcb2c87c3
@ -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:
|
||||
|
||||
|
16
mac/wxMac_additions/eventloops.patch
Normal file
16
mac/wxMac_additions/eventloops.patch
Normal 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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user