mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
3a10a8bf45
Update site to avoid redirections https://ipmiutil.sourceforge.net/ Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
830 B
Makefile
26 lines
830 B
Makefile
################################################################################
|
|
#
|
|
# ipmiutil
|
|
#
|
|
################################################################################
|
|
|
|
IPMIUTIL_VERSION = 3.1.9
|
|
IPMIUTIL_SITE = https://downloads.sourceforge.net/project/ipmiutil
|
|
IPMIUTIL_LICENSE = BSD-3-Clause
|
|
IPMIUTIL_LICENSE_FILES = COPYING
|
|
|
|
IPMIUTIL_MAKE = $(MAKE1)
|
|
IPMIUTIL_CONF_ENV = ac_cv_type_wchar_t=$(if $(BR2_USE_WCHAR),yes,no)
|
|
|
|
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))
|