Commit 13ef17e6 authored by Łukasz Nowak's avatar Łukasz Nowak

- start checking imagemagick


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40675 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ab3878fb
......@@ -1598,6 +1598,29 @@ class AssertFile(AssertSoftwareMixin):
'zlib',
])
class AssertImagemagick(AssertSoftwareMixin):
lib_lib_list = [
'libbz2',
'libc',
'libdl',
'libm',
'libpthread',
'libz',
]
lib_rpath_list = [
'zlib',
'bzip2',
]
def test_ld_libMagickCore(self):
self.assertLibraryList('parts/imagemagick/lib/libMagickCore.so',
self.lib_lib_list, self.lib_rpath_list)
def test_ld_libMagickWand(self):
self.assertLibraryList('parts/imagemagick/lib/libMagickWand.so',
self.lib_lib_list, self.lib_rpath_list)
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