60add404db
remove useless patch (tested with gcc 10.3.1) Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
22 lines
532 B
Makefile
22 lines
532 B
Makefile
################################################################################
|
|
#
|
|
# gdbm
|
|
#
|
|
################################################################################
|
|
|
|
GDBM_VERSION = 1.21
|
|
GDBM_SITE = $(BR2_GNU_MIRROR)/gdbm
|
|
GDBM_LICENSE = GPL-3.0+
|
|
GDBM_LICENSE_FILES = COPYING
|
|
GDBM_INSTALL_STAGING = YES
|
|
GDBM_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
|
GDBM_CONF_OPTS += --with-readline
|
|
GDBM_DEPENDENCIES += readline
|
|
else
|
|
GDBM_CONF_OPTS += --without-readline
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|