diff options
author | Radu Moisan <radu.moisan@intel.com> | 2013-04-09 10:06:27 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-09 13:16:53 +0100 |
commit | f720f8f3d24fe914aaa2e7f6db190118769abf63 (patch) | |
tree | 1145f63be04aafa0b6532c184a47df46ab3f9dfe /meta/recipes-connectivity/openssl/openssl_1.0.1e.bb | |
parent | fb37dd6822578fced05fa4ab66b56341a46b3bbc (diff) | |
download | poky-f720f8f3d24fe914aaa2e7f6db190118769abf63.tar.gz |
openssl: Upgrade to v1.0.1e
Dropped obolete patches and pulled updates for debian patches.
Addresses CVEs:
http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-2686
http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2013-0166
http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2013-0169
[YOCTO #3965]
(From OE-Core rev: 0470edd01c0aebaa78db137e365a7e22bfb199e9)
Signed-off-by: Radu Moisan <radu.moisan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl_1.0.1e.bb')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_1.0.1e.bb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_1.0.1e.bb b/meta/recipes-connectivity/openssl/openssl_1.0.1e.bb new file mode 100644 index 0000000000..47c13a433c --- /dev/null +++ b/meta/recipes-connectivity/openssl/openssl_1.0.1e.bb | |||
@@ -0,0 +1,50 @@ | |||
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 += "ocf-linux" | ||
6 | |||
7 | CFLAG += "-DHAVE_CRYPTODEV -DUSE_CRYPTODEV_DIGESTS" | ||
8 | |||
9 | PR = "${INC_PR}.0" | ||
10 | |||
11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f9a8f968107345e0b75aa8c2ecaa7ec8" | ||
12 | |||
13 | export DIRS = "crypto ssl apps engines" | ||
14 | export OE_LDFLAGS="${LDFLAGS}" | ||
15 | |||
16 | SRC_URI += "file://configure-targets.patch \ | ||
17 | file://shared-libs.patch \ | ||
18 | file://oe-ldflags.patch \ | ||
19 | file://engines-install-in-libdir-ssl.patch \ | ||
20 | file://openssl-fix-link.patch \ | ||
21 | file://debian/version-script.patch \ | ||
22 | file://debian/pic.patch \ | ||
23 | file://debian/c_rehash-compat.patch \ | ||
24 | file://debian/ca.patch \ | ||
25 | file://debian/make-targets.patch \ | ||
26 | file://debian/no-rpath.patch \ | ||
27 | file://debian/man-dir.patch \ | ||
28 | file://debian/man-section.patch \ | ||
29 | file://debian/no-symbolic.patch \ | ||
30 | file://debian/debian-targets.patch \ | ||
31 | file://openssl_fix_for_x32.patch \ | ||
32 | file://find.pl \ | ||
33 | " | ||
34 | |||
35 | SRC_URI[md5sum] = "66bf6f10f060d561929de96f9dfe5b8c" | ||
36 | SRC_URI[sha256sum] = "f74f15e8c8ff11aa3d5bb5f276d202ec18d7246e95f961db76054199c69c1ae3" | ||
37 | |||
38 | PACKAGES =+ " \ | ||
39 | ${PN}-engines \ | ||
40 | ${PN}-engines-dbg \ | ||
41 | " | ||
42 | |||
43 | FILES_${PN}-engines = "${libdir}/ssl/engines/*.so ${libdir}/engines" | ||
44 | FILES_${PN}-engines-dbg = "${libdir}/ssl/engines/.debug" | ||
45 | |||
46 | PARALLEL_MAKEINST = "" | ||
47 | |||
48 | do_configure_prepend() { | ||
49 | cp ${WORKDIR}/find.pl ${S}/util/find.pl | ||
50 | } | ||