Implement some missing lua functions, PNG format creation (requires zlib)

This commit is contained in:
Simon Robertshaw
2012-08-11 20:24:48 +01:00
parent ecbb1e9103
commit 08b4e5553a
8 changed files with 337 additions and 69 deletions

View File

@@ -97,6 +97,11 @@ if not conf.CheckLib('bz2'):
print "libbz2 not found or not installed"
raise SystemExit(1)
#Check for zlib
if not conf.CheckLib('z'):
print "libz not found or not installed"
raise SystemExit(1)
if not conf.CheckCHeader("bzlib.h"):
print "bzip2 headers not found"
raise SystemExit(1)