The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / libedit / libedit.mk
1 ################################################################################
2 #
3 # libedit
4 #
5 ################################################################################
6
7 LIBEDIT_VERSION = 20150325-3.1
8 LIBEDIT_SITE = http://www.thrysoee.dk/editline
9 LIBEDIT_INSTALL_STAGING = YES
10 LIBEDIT_DEPENDENCIES = ncurses
11 LIBEDIT_LICENSE = BSD-3c
12 LIBEDIT_LICENSE_FILES = COPYING
13
14 # We're patching configure.ac
15 LIBEDIT_AUTORECONF = YES
16
17 # Needed for autoreconf to work properly
18 define LIBEDIT_FIXUP_M4_DIR
19         mkdir $(@D)/m4
20 endef
21 LIBEDIT_POST_EXTRACT_HOOKS += LIBEDIT_FIXUP_M4_DIR
22
23 # Doesn't really support !wchar, but support is disabled otherwise
24 LIBEDIT_CONF_OPTS += --enable-widec
25
26 # Note: libbsd required for *vis functions, but works only with a toolchain
27 # with __progname; otherwise, some features are disabled, as if libbsd was
28 # missing entirely.
29 ifeq ($(BR2_PACKAGE_LIBBSD),y)
30 LIBEDIT_DEPENDENCIES += libbsd
31 endif
32
33 $(eval $(autotools-package))