at some point libpng stopped being a dep of image.so?

This commit is contained in:
TTimo 2016-01-10 11:20:02 -06:00
parent 58d61bb3a8
commit 9a169784d2
1 changed files with 4 additions and 0 deletions

View File

@ -395,6 +395,10 @@ class Config:
jpeg_path = find_library( module_ldd, 'libjpeg' )
print( 'JPEG library: %s' % repr( jpeg_path ) )
p = subprocess.Popen( 'ldd -r install/modules/imagepng.so', shell = True, stdout = subprocess.PIPE )
module_ldd = p.communicate()[0]
png_path = find_library( module_ldd, 'libpng' )
print( 'PNG library: %s' % repr( png_path ) )