mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-08 23:51:08 -09:00
ipmiutil depends on dynamic library since commit670095b473so test on BR2_STATIC_LIBS added by commit9f31cd14d0is not needed anymore Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> (cherry picked from commitcdc2a52a0f) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
31 lines
960 B
Makefile
31 lines
960 B
Makefile
################################################################################
|
|
#
|
|
# ipmiutil
|
|
#
|
|
################################################################################
|
|
|
|
IPMIUTIL_VERSION = 3.1.7
|
|
IPMIUTIL_SITE = https://sourceforge.net/projects/ipmiutil/files
|
|
IPMIUTIL_LICENSE = BSD-3-Clause
|
|
IPMIUTIL_LICENSE_FILES = COPYING
|
|
|
|
IPMIUTIL_MAKE = $(MAKE1)
|
|
|
|
# aclocal.m4 is newer than config.h.in. Touch the latter to avoid autoreconf
|
|
define IPMIUTIL_TOUCH_CONFIG_H_IN
|
|
touch $(@D)/config.h.in
|
|
endef
|
|
IPMIUTIL_PRE_CONFIGURE_HOOKS += IPMIUTIL_TOUCH_CONFIG_H_IN
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
# 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 -DSSL11"
|
|
IPMIUTIL_DEPENDENCIES += openssl
|
|
else
|
|
IPMIUTIL_CONF_OPTS += --disable-lanplus
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|