1
0

Linux/Wine based build scripts for Windows executables and installer

This commit is contained in:
slush
2012-12-09 10:40:31 +01:00
parent f0f2a0687c
commit c54372f324
5 changed files with 290 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
252a253,255
> class NoZlib:
> def decompress(self, data):
> return data
253a257,259
> def compress(self, data, lvl):
> return data
>
316c322
< zlib = DummyZlib()
---
> zlib = NoZlib()