Commit 1589828f authored by Łukasz Nowak's avatar Łukasz Nowak

- do not use zlib in openssl

Package needs patching to be able to add locally provided zlib to
openssl.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40485 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f502b0d7
......@@ -18,7 +18,7 @@ configure-options =
--prefix=${buildout:parts-directory}/${:_buildout_section_name_}
--libdir=lib
shared
zlib
no-zlib
# it seems that parallel build sometimes fails for openssl.
make-options =
......
......@@ -1405,11 +1405,11 @@ class AssertItools(AssertSoftwareMixin):
class AssertOpenssl(AssertSoftwareMixin):
def test_ld_openssl(self):
elf_dict = readElfAsDict('parts/openssl/bin/openssl')
self.assertEqual(sorted(['libc', 'libcrypto', 'libdl', 'libssl', 'libz']),
self.assertEqual(sorted(['libc', 'libcrypto', 'libdl', 'libssl']),
elf_dict['library_list'])
soft_dir = os.path.join(os.path.abspath(os.curdir), 'parts')
expected_rpath_list = [os.path.join(soft_dir, software, 'lib') for
software in ['zlib', 'openssl']]
software in ['openssl']]
self.assertEqual(sorted(expected_rpath_list), elf_dict['runpath_list'])
class AssertElfLinkedInternally(AssertSoftwareMixin):
......
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