diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2019-02-17 17:24:32 +0100 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2019-02-20 21:33:57 +0100 |
commit | 623afa9c0cd5d25c51cbf78214fbd98e5ef704ce (patch) | |
tree | 86cfda3788b40be2950bbe0a3f083ab77108dfcd | |
parent | d04a1efcb56cbdc9b906d375fdebe30f00c9d752 (diff) | |
download | buildroot-623afa9c0cd5d25c51cbf78214fbd98e5ef704ce.tar.gz buildroot-623afa9c0cd5d25c51cbf78214fbd98e5ef704ce.zip |
package/ipmiutil: fix build with openssl 1.1.x
Fixes:
- http://autobuild.buildroot.org/results/1d868798c5b80d7b41123f988449ef548dd95490
This works for libressl as well, because libressl does provide
EVP_CIPHER_CTX_new() which is what gets enabled by -DSSL11
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
-rw-r--r-- | package/ipmiutil/ipmiutil.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ipmiutil/ipmiutil.mk b/package/ipmiutil/ipmiutil.mk index 5d8c45665d..0d9a4509b3 100644 --- a/package/ipmiutil/ipmiutil.mk +++ b/package/ipmiutil/ipmiutil.mk @@ -18,7 +18,7 @@ ifeq ($(BR2_PACKAGE_OPENSSL)x$(BR2_STATIC_LIBS),yx) # tests against distro libcrypto so it might get a false positive when # the openssl version is old, so force it off # SKIP_MD2 can be used only if ALLOW_GNU is defined. -IPMIUTIL_CONF_OPTS += CPPFLAGS="$(TARGET_CPPFLAGS) -DALLOW_GNU -DSKIP_MD2" +IPMIUTIL_CONF_OPTS += CPPFLAGS="$(TARGET_CPPFLAGS) -DALLOW_GNU -DSKIP_MD2 -DSSL11" IPMIUTIL_DEPENDENCIES += openssl else IPMIUTIL_CONF_OPTS += --disable-lanplus |