6aa9606e7a
slang forgets to link with ncurses that is a dependency of readline when linking the slsh binary. Correct this. While at it, also make sure to use staging ncurses5-config script and not the host one. slang uses ncurses5-config to find terminfo location, and only staging ncurses5-config provides the correct run-time location. Fixes: http://autobuild.buildroot.net/results/1dc/1dc52048254c32a24070fef1c1039cebb32e7ac1/ http://autobuild.buildroot.net/results/c17/c176511cbb147c2d8cb0ec0ff3c1612ce8971cb8/ http://autobuild.buildroot.net/results/78d/78dc2ba07b1d7f888aab94e223f3e0b1a1df3af5/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
63 lines
1.6 KiB
Makefile
63 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# slang
|
|
#
|
|
################################################################################
|
|
|
|
SLANG_VERSION = 2.3.0
|
|
SLANG_SITE = http://www.jedsoft.org/releases/slang
|
|
SLANG_LICENSE = GPLv2+
|
|
SLANG_LICENSE_FILES = COPYING
|
|
SLANG_INSTALL_STAGING = YES
|
|
SLANG_CONF_OPTS = --with-onig=no
|
|
SLANG_MAKE = $(MAKE1)
|
|
|
|
# Racy and we don't have/do libtermcap
|
|
define SLANG_DISABLE_TERMCAP
|
|
$(SED) '/^TERMCAP=/s:=.*:=:' $(@D)/configure
|
|
endef
|
|
SLANG_POST_PATCH_HOOKS += SLANG_DISABLE_TERMCAP
|
|
|
|
# Absolute path hell, sigh...
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
SLANG_CONF_OPTS += --with-png=$(STAGING_DIR)/usr
|
|
SLANG_DEPENDENCIES += libpng
|
|
else
|
|
SLANG_CONF_OPTS += --with-png=no
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_PCRE),y)
|
|
SLANG_CONF_OPTS += --with-pcre=$(STAGING_DIR)/usr
|
|
SLANG_DEPENDENCIES += pcre
|
|
else
|
|
SLANG_CONF_OPTS += --with-pcre=no
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
SLANG_CONF_OPTS += --with-z=$(STAGING_DIR)/usr
|
|
SLANG_DEPENDENCIES += zlib
|
|
else
|
|
SLANG_CONF_OPTS += --with-z=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
SLANG_DEPENDENCIES += ncurses
|
|
SLANG_CONF_ENV += ac_cv_path_nc5config=$(STAGING_DIR)/usr/bin/ncurses5-config
|
|
else
|
|
SLANG_CONF_OPTS += ac_cv_path_nc5config=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
|
SLANG_CONF_OPTS += --with-readline=gnu
|
|
SLANG_DEPENDENCIES += readline
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
SLANG_CONF_ENV += LIBS="`$(STAGING_DIR)/usr/bin/ncurses5-config --libs`"
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
SLANG_MAKE_OPTS = static
|
|
SLANG_INSTALL_STAGING_OPTS = DESTDIR=$(STAGING_DIR) install-static
|
|
SLANG_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install-static
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|