mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
at some point libpng stopped being a dep of image.so?
This commit is contained in:
parent
58d61bb3a8
commit
9a169784d2
1 changed files with 4 additions and 0 deletions
|
@ -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 ) )
|
||||
|
||||
|
|
Loading…
Reference in a new issue