diff options
author | Saul Wold <sgw@linux.intel.com> | 2015-03-04 09:46:48 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-10 10:47:46 +0000 |
commit | f5e4349011bd00aa47d142022dcdd1d1706a9655 (patch) | |
tree | 31b2c535de004b08968cfdb57ce085ca3b70eb83 /meta/recipes-connectivity/openssl/openssl_1.0.2.bb | |
parent | 7c504b44ef593f97f5311d0d27f667e85a2eddbb (diff) | |
download | poky-f5e4349011bd00aa47d142022dcdd1d1706a9655.tar.gz |
openssl: Upgrade to 1.0.2
Rebased numerous patches
removed aarch64 initial work since it's part of upstream now
Imported a few additional patches from Debian to support the version-script
and blacklist additional bad certificates.
(From OE-Core rev: 10b689033551c37d6cafa284d82bdccd43f6113e)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl_1.0.2.bb')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_1.0.2.bb | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_1.0.2.bb b/meta/recipes-connectivity/openssl/openssl_1.0.2.bb new file mode 100644 index 0000000000..79537f99d9 --- /dev/null +++ b/meta/recipes-connectivity/openssl/openssl_1.0.2.bb | |||
@@ -0,0 +1,58 @@ | |||
1 | require openssl.inc | ||
2 | |||
3 | # For target side versions of openssl enable support for OCF Linux driver | ||
4 | # if they are available. | ||
5 | DEPENDS += "cryptodev-linux" | ||
6 | |||
7 | CFLAG += "-DHAVE_CRYPTODEV -DUSE_CRYPTODEV_DIGESTS" | ||
8 | |||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f9a8f968107345e0b75aa8c2ecaa7ec8" | ||
10 | |||
11 | export DIRS = "crypto ssl apps engines" | ||
12 | export OE_LDFLAGS="${LDFLAGS}" | ||
13 | |||
14 | SRC_URI += "file://configure-targets.patch \ | ||
15 | file://shared-libs.patch \ | ||
16 | file://oe-ldflags.patch \ | ||
17 | file://engines-install-in-libdir-ssl.patch \ | ||
18 | file://openssl-fix-link.patch \ | ||
19 | file://debian1.0.2/block_diginotar.patch \ | ||
20 | file://debian1.0.2/block_digicert_malaysia.patch \ | ||
21 | file://debian1.0.2/padlock_conf.patch \ | ||
22 | file://debian/ca.patch \ | ||
23 | file://debian/c_rehash-compat.patch \ | ||
24 | file://debian/debian-targets.patch \ | ||
25 | file://debian/man-dir.patch \ | ||
26 | file://debian/man-section.patch \ | ||
27 | file://debian/no-rpath.patch \ | ||
28 | file://debian/no-symbolic.patch \ | ||
29 | file://debian/pic.patch \ | ||
30 | file://debian/version-script.patch \ | ||
31 | file://openssl_fix_for_x32.patch \ | ||
32 | file://fix-cipher-des-ede3-cfb1.patch \ | ||
33 | file://openssl-avoid-NULL-pointer-dereference-in-EVP_DigestInit_ex.patch \ | ||
34 | file://openssl-avoid-NULL-pointer-dereference-in-dh_pub_encode.patch \ | ||
35 | file://find.pl \ | ||
36 | file://openssl-fix-des.pod-error.patch \ | ||
37 | file://Makefiles-ptest.patch \ | ||
38 | file://ptest-deps.patch \ | ||
39 | file://run-ptest \ | ||
40 | " | ||
41 | |||
42 | SRC_URI[md5sum] = "38373013fc85c790aabf8837969c5eba" | ||
43 | SRC_URI[sha256sum] = "8c48baf3babe0d505d16cfc0cf272589c66d3624264098213db0fb00034728e9" | ||
44 | |||
45 | PACKAGES =+ " \ | ||
46 | ${PN}-engines \ | ||
47 | ${PN}-engines-dbg \ | ||
48 | " | ||
49 | |||
50 | FILES_${PN}-engines = "${libdir}/ssl/engines/*.so ${libdir}/engines" | ||
51 | FILES_${PN}-engines-dbg = "${libdir}/ssl/engines/.debug" | ||
52 | |||
53 | PARALLEL_MAKE = "" | ||
54 | PARALLEL_MAKEINST = "" | ||
55 | |||
56 | do_configure_prepend() { | ||
57 | cp ${WORKDIR}/find.pl ${S}/util/find.pl | ||
58 | } | ||