untested fix for compiling waves audiobackend on case-sensitive FS with mingw.

This commit is contained in:
Robin Gareus
2014-10-01 04:02:30 +02:00
parent d75d6a833a
commit cd60fd9dfe
16 changed files with 20 additions and 10 deletions

View File

@@ -31,7 +31,7 @@ def backend_list():
else:
backends = [ ]
if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc' or Options.options.dist_target == 'mingw':
if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc': # or Options.options.dist_target == 'mingw':
backends += [ 'wavesaudio' ]
return backends