Credit Andrew - fix vorbis audio which was scratchy and ensure aging plugin does...
[goodguy/cinelerra.git] / cinelerra-5.1 / thirdparty / src / suil-0.10.6.patch1
1 --- ./waflib/Context.py
2 +++ ./waflib/Context.py
3 @@ -6,10 +6,17 @@
4  Classes and functions enabling the command system
5  """
6  
7 -import os, re, imp, sys
8 +import os, re, sys
9  from waflib import Utils, Errors, Logs
10  import waflib.Node
11  
12 +if sys.hexversion > 0x3040000:
13 +        import types 
14 +        class imp(object):
15 +                new_module = lambda x: types.ModuleType(x)
16 +else:
17 +        import imp
18 +
19  # the following 3 constants are updated on each new release (do not touch)
20  HEXVERSION=0x2001200
21  """Constant updated on new releases"""