mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
asio: DEPENDS on openssl
asio may or may not build examples and tests that depend on OpenSSL, alas, it has no way to explicitly enable or disable OpenSSL support, which is enabled unconditionally whenever openssl/ssl.h can be found. Due to that we get non-deterministic build behaviour, based on whether or not some other package pulled OpenSSL into the sysroot before asio's configure is running. Additionally, we can get random compilation failures if openssl/ssl.h exists during configure time, but is removed from sysroot later, e.g. due to a concurrent rebuild of OpenSSL at the same time as building asio. Having an explicit DEPENDS avoids both these problems. We can not use PACKAGECONFIG, because as mentioned above there is no way to explicitly disable OpenSSL support. Signed-off-by: André Draszik <adraszik@tycoint.com> Reviewed-by: Sylvain Lemieux <slemieux@tycoint.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
e045a66fc9
commit
334608d5dd
|
|
@ -6,7 +6,7 @@ HOMEPAGE = "http://think-async.com/Asio"
|
|||
SECTION = "libs"
|
||||
LICENSE = "BSL-1.0"
|
||||
|
||||
DEPENDS = "boost"
|
||||
DEPENDS = "boost openssl"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/asio/${BP}.tar.bz2"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user