7b4937a170
For an unknown reason, wchar_t is incorrectly detected with uclibc resulting in the following build failure: In file included from igetevent.c:136: imb_api.h:150:5: error: unknown type name 'wchar_t' 150 | wchar_t *Buffer; | ^~~~~~~ The build failure can be reproduced even when reverting bump to version 3.1.8. Fixes: - http://autobuild.buildroot.org/results/e9ff3bd08e106dc834968bf5e4296ce8299027f8 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
827 B
Makefile
26 lines
827 B
Makefile
################################################################################
|
|
#
|
|
# ipmiutil
|
|
#
|
|
################################################################################
|
|
|
|
IPMIUTIL_VERSION = 3.1.8
|
|
IPMIUTIL_SITE = https://sourceforge.net/projects/ipmiutil/files
|
|
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))
|