2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2003-02-12 11:40:28 +01:00
|
|
|
#
|
|
|
|
# diffutils
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2003-02-12 11:40:28 +01:00
|
|
|
|
2017-05-26 00:34:18 +02:00
|
|
|
DIFFUTILS_VERSION = 3.6
|
2013-09-06 08:14:15 +02:00
|
|
|
DIFFUTILS_SOURCE = diffutils-$(DIFFUTILS_VERSION).tar.xz
|
2011-11-13 23:27:53 +01:00
|
|
|
DIFFUTILS_SITE = $(BR2_GNU_MIRROR)/diffutils
|
2017-07-03 22:41:14 +02:00
|
|
|
DIFFUTILS_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
2017-03-30 15:43:33 +02:00
|
|
|
DIFFUTILS_LICENSE = GPL-3.0+
|
2013-06-28 15:41:03 +02:00
|
|
|
DIFFUTILS_LICENSE_FILES = COPYING
|
2010-07-27 09:19:45 +02:00
|
|
|
|
2017-09-23 23:24:04 +02:00
|
|
|
# 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
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|