67ee7f9eb1
The Lynx configure script uses pkg-config when available: checking for nios2-buildroot-linux-gnu-pkg-config... /home/thomas/projets/buildroot/output/host/bin/pkg-config checking pkg-config for openssl... yes [...] checking pkg-config for ncurses... yes Using pkg-config avoids build failures such as: checking for _nc_freeall... no configure: error: Configuration does not support color-styles make: *** [/home/test/autobuild/run/instance-1/output/build/lynx-2.8.9rel.1/.stamp_configured] Error 1 When building with "make lynx", so that pkg-config is not built before. The issue is that in this case, lynx configure script picks up the ncurses6-config script for the host ncurses instead of the one in staging. Using pkg-config solves that nicely. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
39 lines
1009 B
Makefile
39 lines
1009 B
Makefile
################################################################################
|
|
#
|
|
# lynx
|
|
#
|
|
################################################################################
|
|
|
|
LYNX_VERSION = 2.8.9rel.1
|
|
LYNX_SOURCE = lynx$(LYNX_VERSION).tar.bz2
|
|
LYNX_SITE = ftp://ftp.invisible-island.net/lynx/tarballs
|
|
LYNX_LICENSE = GPL-2.0
|
|
LYNX_LICENSE_FILES = COPYING
|
|
|
|
LYNX_DEPENDENCIES = host-pkgconf $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
LYNX_DEPENDENCIES += ncurses
|
|
LYNX_CONF_OPTS += --with-screen=ncurses$(if $(BR2_PACKAGE_NCURSES_WCHAR),w)
|
|
else ifeq ($(BR2_PACKAGE_SLANG),y)
|
|
LYNX_DEPENDENCIES += slang
|
|
LYNX_CONF_OPTS += --with-screen=slang
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LYNX_DEPENDENCIES += openssl
|
|
LYNX_CONF_OPTS += --with-ssl
|
|
else ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
LYNX_DEPENDENCIES += gnutls
|
|
LYNX_CONF_OPTS += --with-gnutls
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LYNX_DEPENDENCIES += zlib
|
|
LYNX_CONF_OPTS += --with-zlib
|
|
else
|
|
LYNX_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|