| 1 |
# OpenSSL - a toolkit implementing SSL v2/v3 and TLS v1 protocols as
|
| 2 |
# well as a full-strength general purpose cryptography
|
| 3 |
# library.
|
| 4 |
# http://www.openssl.org/
|
| 5 |
|
| 6 |
[buildout]
|
| 7 |
extends =
|
| 8 |
zlib.cfg
|
| 9 |
../profiles/links.cfg
|
| 10 |
|
| 11 |
parts =
|
| 12 |
openssl
|
| 13 |
|
| 14 |
[openssl]
|
| 15 |
recipe = hexagonit.recipe.cmmi
|
| 16 |
url = https://www.openssl.org/source/openssl-1.0.0c.tar.gz
|
| 17 |
md5sum = ff8fb85610aef328315a9decbb2712e4
|
| 18 |
configure-command = ./config
|
| 19 |
configure-options =
|
| 20 |
-I${zlib:location}/include
|
| 21 |
-L${zlib:location}/lib
|
| 22 |
--openssldir=${buildout:parts-directory}/${:_buildout_section_name_}/etc/ssl
|
| 23 |
--prefix=${buildout:parts-directory}/${:_buildout_section_name_}
|
| 24 |
--libdir=lib
|
| 25 |
shared
|
| 26 |
no-zlib
|
| 27 |
|
| 28 |
# it seems that parallel build sometimes fails for openssl.
|
| 29 |
make-options =
|
| 30 |
-j1
|
| 31 |
LDFLAGS="-Wl,-rpath -Wl,${zlib:location}/lib -Wl,-rpath -Wl,${buildout:parts-directory}/${:_buildout_section_name_}/lib"
|
| 32 |
SHARED_LDFLAGS="-Wl,-rpath -Wl,${zlib:location}/lib -Wl,-rpath -Wl,${buildout:parts-directory}/${:_buildout_section_name_}/lib"
|