2014-10-08 17:00:03 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# ipmiutil
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2020-09-26 21:53:35 +02:00
|
|
|
IPMIUTIL_VERSION = 3.1.7
|
2018-08-19 11:06:59 +02:00
|
|
|
IPMIUTIL_SITE = https://sourceforge.net/projects/ipmiutil/files
|
2017-03-30 15:43:38 +02:00
|
|
|
IPMIUTIL_LICENSE = BSD-3-Clause
|
2014-10-08 17:00:03 +02:00
|
|
|
IPMIUTIL_LICENSE_FILES = COPYING
|
2015-05-17 13:42:34 +02:00
|
|
|
|
2015-05-23 17:40:33 +02:00
|
|
|
IPMIUTIL_MAKE = $(MAKE1)
|
|
|
|
|
2015-05-17 14:02:05 +02:00
|
|
|
# forgets to link against libcrypto dependencies breaking static link
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL)x$(BR2_STATIC_LIBS),yx)
|
2015-05-05 15:43:54 +02:00
|
|
|
# tests against distro libcrypto so it might get a false positive when
|
|
|
|
# the openssl version is old, so force it off
|
2015-05-16 01:06:28 +02:00
|
|
|
# SKIP_MD2 can be used only if ALLOW_GNU is defined.
|
2019-02-17 17:24:32 +01:00
|
|
|
IPMIUTIL_CONF_OPTS += CPPFLAGS="$(TARGET_CPPFLAGS) -DALLOW_GNU -DSKIP_MD2 -DSSL11"
|
2015-05-17 13:42:34 +02:00
|
|
|
IPMIUTIL_DEPENDENCIES += openssl
|
|
|
|
else
|
|
|
|
IPMIUTIL_CONF_OPTS += --disable-lanplus
|
|
|
|
endif
|
2014-10-08 17:00:03 +02:00
|
|
|
|
|
|
|
$(eval $(autotools-package))
|