Commit bcd89b40 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

link with our own zlib. disable libwrap.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41972 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 102e6eac
......@@ -22,6 +22,8 @@ md5sum = bbd274e8364ea3ceca0ee5190e13edd1
pre-configure-hook = ${stunnel-4-hook-download:location}/${stunnel-4-hook-download:filename}:pre_configure_hook
configure-options =
--enable-ipv6
--disable-libwrap
--with-ssl=${openssl:location}
environment =
LDFLAGS=-Wl,-rpath -Wl,${openssl:location}/lib
CPPFLAGS=-I${zlib:location}/include
LDFLAGS=-Wl,-rpath -Wl,${openssl:location}/lib -L${zlib:location}/lib -Wl,-rpath -Wl,${zlib:location}/lib
......@@ -2156,6 +2156,37 @@ class AssertM4(AssertSoftwareMixin):
], [
])
class AssertStunnel(AssertSoftwareMixin):
def test_ld_stunnel(self):
self.assertLibraryList('parts/stunnel/bin/stunnel', [
'libc',
'libcrypto',
'libdl',
'libnsl',
'libpthread',
'libssl',
'libutil',
'libz',
], [
'openssl',
'zlib',
])
def test_ld_libstunnel(self):
self.assertLibraryList('parts/stunnel/lib/stunnel/libstunnel.so', [
'libc',
'libcrypto',
'libdl',
'libnsl',
'libpthread',
'libssl',
'libutil',
'libz',
], [
'openssl',
'zlib',
])
# tests for Zope-2.12 buildout only
if python_version >= '2.6':
class AssertPython26(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