Commit f6ba86d3 authored by Łukasz Nowak's avatar Łukasz Nowak

- check libpng


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40701 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent fb650bb1
......@@ -1744,6 +1744,25 @@ class AssertLibjpeg(AssertSoftwareMixin):
'libc',
], [])
class AssertLibpng(AssertSoftwareMixin):
def test_ld_libpng14(self):
self.assertLibraryList('parts/libpng/lib/libpng14.so',[
'libc',
'libm',
'libz',
], [
'zlib',
])
def test_ld_libpng(self):
self.assertLibraryList('parts/libpng/lib/libpng.so',[
'libc',
'libm',
'libz',
], [
'zlib',
])
class AssertElfLinkedInternally(AssertSoftwareMixin):
def test(self):
result_dict = {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment