6dfc789f4f
The autoconf-build system fails to properly detect vsnprintf
checking for vsnprintf... yes
checking whether vsnprintf is C99 compliant... no
which leads to a build error
snprintf.c:495:1: error: inlining failed in call to 'always_inline'
'rpl_vsnprintf.localalias': function not inlinable
Building with cmake fixes the problem:
-- Looking for vsnprintf
-- Looking for vsnprintf - found
The cmake build system has an option to disable checkmk, so we don't
need to remove it from target anymore.
Fixes:
http://autobuild.buildroot.net/results/e55/e5562513226de902dae642526165b1555a540144/
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
16 lines
491 B
Makefile
16 lines
491 B
Makefile
################################################################################
|
|
#
|
|
# check
|
|
#
|
|
################################################################################
|
|
|
|
CHECK_VERSION = 0.15.2
|
|
CHECK_SITE = https://github.com/libcheck/check/releases/download/$(CHECK_VERSION)
|
|
CHECK_INSTALL_STAGING = YES
|
|
CHECK_DEPENDENCIES = host-pkgconf
|
|
CHECK_LICENSE = LGPL-2.1+
|
|
CHECK_LICENSE_FILES = COPYING.LESSER
|
|
CHECK_CONF_OPTS = -DBUILD_TESTING=OFF -DINSTALL_CHECKMK=OFF
|
|
|
|
$(eval $(cmake-package))
|