2014-10-08 23:00:03 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# ipmiutil
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-08-19 17:06:59 +08:00
|
|
|
IPMIUTIL_VERSION = 3.1.2
|
|
|
|
IPMIUTIL_SITE = https://sourceforge.net/projects/ipmiutil/files
|
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
|
2016-07-26 18:20:13 +08:00
|
|
|
# We're patching configure.ac
|
2014-10-08 23:00:03 +08:00
|
|
|
IPMIUTIL_AUTORECONF = YES
|
2015-05-17 19:42:34 +08:00
|
|
|
|
2015-05-23 23:40:33 +08:00
|
|
|
IPMIUTIL_MAKE = $(MAKE1)
|
|
|
|
|
2015-05-17 20:02:05 +08:00
|
|
|
# forgets to link against libcrypto dependencies breaking static link
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL)x$(BR2_STATIC_LIBS),yx)
|
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.
|
2015-05-17 19:42:34 +08:00
|
|
|
IPMIUTIL_CONF_OPTS += CPPFLAGS="$(TARGET_CPPFLAGS) -DALLOW_GNU -DSKIP_MD2"
|
|
|
|
IPMIUTIL_DEPENDENCIES += openssl
|
|
|
|
else
|
|
|
|
IPMIUTIL_CONF_OPTS += --disable-lanplus
|
|
|
|
endif
|
2014-10-08 23:00:03 +08:00
|
|
|
|
|
|
|
$(eval $(autotools-package))
|