summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2015-11-11 14:50:27 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-12 08:42:27 +0000
commitf3d7c3f385d0caa2ffdc2532316afd4f21b9877e (patch)
treee9165ad41dfde4a1d6865b7cc3ddf0427ba31f54 /meta/recipes-connectivity
parent96b1b5c127e9e0e637aaf7948cf3330a94a5cd57 (diff)
downloadpoky-f3d7c3f385d0caa2ffdc2532316afd4f21b9877e.tar.gz
openssl: sanity check that the bignum module is present
The crypto_use_bigint_in_x86-64_perl patch uses the "bigint" module to transparently support 64-bit integers on 32-bit hosts. Whilst bigint (part of bignum) is a core Perl module not all distributions install it (notable Fedora 23). As the error message when bignum isn't installed is obscure, add a task to check that it is available and alert the user if it isn't. [ YOCTO #8562 ] (From OE-Core master rev: 2f9a2fbc46aa435a0a7f7662bb62029ac714f25a) (From OE-Core rev: 7aab4744a329f5fd1aca221950ef629e9f92b456) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r--meta/recipes-connectivity/openssl/openssl_1.0.2d.bb10
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_1.0.2d.bb b/meta/recipes-connectivity/openssl/openssl_1.0.2d.bb
index fd568414fa..659e0bd49e 100644
--- a/meta/recipes-connectivity/openssl/openssl_1.0.2d.bb
+++ b/meta/recipes-connectivity/openssl/openssl_1.0.2d.bb
@@ -56,3 +56,13 @@ PARALLEL_MAKEINST = ""
56do_configure_prepend() { 56do_configure_prepend() {
57 cp ${WORKDIR}/find.pl ${S}/util/find.pl 57 cp ${WORKDIR}/find.pl ${S}/util/find.pl
58} 58}
59
60# The crypto_use_bigint patch means that perl's bignum module needs to be
61# installed, but some distributions (for example Fedora 23) don't ship it by
62# default. As the resulting error is very misleading check for bignum before
63# building.
64do_configure_prepend() {
65 if ! perl -Mbigint -e true; then
66 bbfatal "The perl module 'bignum' was not found but this is required to build openssl. Please install this module (often packaged as perl-bignum) and re-run bitbake."
67 fi
68}