ca3524ba70
This commit bumps ltp-testsuite to the latest version available. In addition to that, it also: * Removes the ltp-testsuite-disable-controllers.patch file, which becomes useless thanks to the workaround that consists in removing -D_FILE_OFFSET_BITS=64 from the CFLAGS. This is necessary because ltp-testsuite uses the non-largefile compatible <fts.h> interface. * Marks the package as not-available on AArch64, since it doesn't build properly. A bug has been submitted upstream to the Linaro people doing the AArch64 support. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
960 B
Makefile
27 lines
960 B
Makefile
################################################################################
|
|
#
|
|
# ltp-testsuite
|
|
#
|
|
################################################################################
|
|
|
|
LTP_TESTSUITE_VERSION = 20130904
|
|
LTP_TESTSUITE_SOURCE = ltp-full-$(LTP_TESTSUITE_VERSION).tar.xz
|
|
LTP_TESTSUITE_SITE = http://downloads.sourceforge.net/project/ltp/LTP%20Source/ltp-$(LTP_TESTSUITE_VERSION)
|
|
LTP_TESTSUITE_LICENSE = GPLv2 GPLv2+
|
|
LTP_TESTSUITE_LICENSE_FILES = COPYING
|
|
|
|
# Needs libcap with file attrs which needs attr, so both required
|
|
ifeq ($(BR2_PACKAGE_LIBCAP)$(BR2_PACKAGE_ATTR),yy)
|
|
LTP_TESTSUITE_DEPENDENCIES += libcap
|
|
else
|
|
LTP_TESTSUITE_CONF_ENV += ac_cv_lib_cap_cap_compare=no
|
|
endif
|
|
|
|
# ltp-testsuite uses <fts.h>, which isn't compatible with largefile
|
|
# support.
|
|
LTP_TESTSUITE_CONF_ENV += \
|
|
CFLAGS="$(filter-out -D_FILE_OFFSET_BITS=64,$(TARGET_CFLAGS))" \
|
|
CPPFLAGS="$(filter-out -D_FILE_OFFSET_BITS=64,$(TARGET_CPPFLAGS))"
|
|
|
|
$(eval $(autotools-package))
|