2013-06-05 23:53:30 +00:00
|
|
|
################################################################################
|
2013-05-14 11:45:58 +00:00
|
|
|
#
|
|
|
|
|
# libedit
|
|
|
|
|
#
|
2013-06-05 23:53:30 +00:00
|
|
|
################################################################################
|
2013-05-14 11:45:58 +00:00
|
|
|
|
2019-08-31 12:58:27 +02:00
|
|
|
LIBEDIT_VERSION = 20190324-3.1
|
2014-07-31 10:46:58 +02:00
|
|
|
LIBEDIT_SITE = http://www.thrysoee.dk/editline
|
2013-05-14 11:45:58 +00:00
|
|
|
LIBEDIT_INSTALL_STAGING = YES
|
2014-06-26 16:20:55 -03:00
|
|
|
LIBEDIT_DEPENDENCIES = ncurses
|
2017-03-30 19:13:38 +05:30
|
|
|
LIBEDIT_LICENSE = BSD-3-Clause
|
2014-06-26 16:20:55 -03:00
|
|
|
LIBEDIT_LICENSE_FILES = COPYING
|
2013-07-29 18:44:17 +02:00
|
|
|
|
|
|
|
|
# We're patching configure.ac
|
2014-06-26 16:20:55 -03:00
|
|
|
LIBEDIT_AUTORECONF = YES
|
2013-07-29 18:44:17 +02:00
|
|
|
|
2016-01-06 22:41:17 -02:00
|
|
|
# musl is ISO 10646 compliant but doesn't define __STDC_ISO_10646__,
|
|
|
|
|
# so let's define it manually
|
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
|
|
|
|
|
LIBEDIT_CONF_OPTS += CFLAGS="$(TARGET_CFLAGS) -D__STDC_ISO_10646__=201103L"
|
|
|
|
|
endif
|
|
|
|
|
|
2013-07-29 18:44:17 +02:00
|
|
|
# Note: libbsd required for *vis functions, but works only with a toolchain
|
|
|
|
|
# with __progname; otherwise, some features are disabled, as if libbsd was
|
|
|
|
|
# missing entirely.
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBBSD),y)
|
2014-06-26 16:20:55 -03:00
|
|
|
LIBEDIT_DEPENDENCIES += libbsd
|
2013-07-29 18:44:17 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|