9dfe03df0d
Fix the following build failure raised since bump to version 3.8 in
commit 1f89c80417
:
sigsegv.c: In function 'sigsegv_handler':
sigsegv.c:979:28: error: 'struct vma_struct' has no member named 'is_near_this'
979 | : vma.is_near_this (addr, &vma))
| ^
Fixes:
- http://autobuild.buildroot.org/results/5ecd55b7c72f9630a7acc72341ccb60e94ddb574
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
774 B
Makefile
24 lines
774 B
Makefile
################################################################################
|
|
#
|
|
# diffutils
|
|
#
|
|
################################################################################
|
|
|
|
DIFFUTILS_VERSION = 3.8
|
|
DIFFUTILS_SOURCE = diffutils-$(DIFFUTILS_VERSION).tar.xz
|
|
DIFFUTILS_SITE = $(BR2_GNU_MIRROR)/diffutils
|
|
DIFFUTILS_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
|
DIFFUTILS_LICENSE = GPL-3.0+
|
|
DIFFUTILS_LICENSE_FILES = COPYING
|
|
# We're patching m4/stack-direction.m4
|
|
DIFFUTILS_AUTORECONF = YES
|
|
|
|
# Since glibc >= 2.26, don't try to use getopt_long replacement bundled
|
|
# with diffutils. It will conflict with the one from glibc.
|
|
ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
|
|
DIFFUTILS_CONF_ENV += gl_cv_func_getopt_gnu=yes
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|