1a59eb4664
Fixes: http://autobuild.buildroot.org/results/04a/04a1c48d484debd7894fd32997ed50d3a0110b93/ Due to weird constructs in the Makefiles, lanplus is always built, even when explicitly disabled with --disable-lanplus . So, add a patch to enforce disabling lanplus. We're doing an at-minima patch just for the upcoming Buildroot release, and to avoid diverging too far from upstream... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Peter Korsgaard <jacmet@uclibc.org> Cc: Romain Naour <romain.naour@openwide.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
28 lines
936 B
Makefile
28 lines
936 B
Makefile
################################################################################
|
|
#
|
|
# ipmiutil
|
|
#
|
|
################################################################################
|
|
|
|
IPMIUTIL_VERSION = 2.9.5
|
|
IPMIUTIL_SITE = http://sourceforge.net/projects/ipmiutil/files/
|
|
IPMIUTIL_LICENSE = BSD-3c
|
|
IPMIUTIL_LICENSE_FILES = COPYING
|
|
# We're patching configure.ac , lib/Makefile.am and lib/lanplus/Makefile.am
|
|
IPMIUTIL_AUTORECONF = YES
|
|
|
|
IPMIUTIL_MAKE = $(MAKE1)
|
|
|
|
# forgets to link against libcrypto dependencies breaking static link
|
|
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_DEPENDENCIES += openssl
|
|
else
|
|
IPMIUTIL_CONF_OPTS += --disable-lanplus
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|