2014-10-08 23:00:03 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# ipmiutil
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2024-01-03 05:38:22 +08:00
|
|
|
IPMIUTIL_VERSION = 3.1.9
|
|
|
|
IPMIUTIL_SITE = https://downloads.sourceforge.net/project/ipmiutil
|
2017-03-30 21:43:38 +08:00
|
|
|
IPMIUTIL_LICENSE = BSD-3-Clause
|
2014-10-08 23:00:03 +08:00
|
|
|
IPMIUTIL_LICENSE_FILES = COPYING
|
2015-05-17 19:42:34 +08:00
|
|
|
|
2015-05-23 23:40:33 +08:00
|
|
|
IPMIUTIL_MAKE = $(MAKE1)
|
2023-02-20 00:14:53 +08:00
|
|
|
IPMIUTIL_CONF_ENV = ac_cv_type_wchar_t=$(if $(BR2_USE_WCHAR),yes,no)
|
2015-05-23 23:40:33 +08:00
|
|
|
|
2022-04-02 16:27:14 +08:00
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
2015-05-05 21:43:54 +08: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 07:06:28 +08:00
|
|
|
# SKIP_MD2 can be used only if ALLOW_GNU is defined.
|
2019-02-18 00:24:32 +08:00
|
|
|
IPMIUTIL_CONF_OPTS += CPPFLAGS="$(TARGET_CPPFLAGS) -DALLOW_GNU -DSKIP_MD2 -DSSL11"
|
2015-05-17 19:42:34 +08:00
|
|
|
IPMIUTIL_DEPENDENCIES += openssl
|
|
|
|
else
|
|
|
|
IPMIUTIL_CONF_OPTS += --disable-lanplus
|
|
|
|
endif
|
2014-10-08 23:00:03 +08:00
|
|
|
|
|
|
|
$(eval $(autotools-package))
|