a815e1cb46
When libXft (FreeType) library is selected, xterm will use it. host-pkgcong is used to search for libXft during configure, so it is in the dependencies. Signed-off-by: Mikhail Peselnik <bas@bmail.ru> Reviewed-by: Romain Naour <romain.naour@openwide.fr> Tested-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
727 B
Makefile
26 lines
727 B
Makefile
################################################################################
|
|
#
|
|
# xterm
|
|
#
|
|
################################################################################
|
|
|
|
XTERM_VERSION = 314
|
|
XTERM_SOURCE = xterm-$(XTERM_VERSION).tgz
|
|
XTERM_SITE = ftp://invisible-island.net/xterm
|
|
XTERM_DEPENDENCIES = ncurses xlib_libXaw host-pkgconf
|
|
XTERM_LICENSE = MIT
|
|
XTERM_LICENSE_FILES = version.c
|
|
XTERM_CONF_OPTS = --enable-256-color \
|
|
--x-includes=$(STAGING_DIR)/usr/include \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXFT),y)
|
|
XTERM_DEPENDENCIES += xlib_libXft
|
|
XTERM_CONF_OPTS += --enable-freetype \
|
|
--with-freetype-config=auto
|
|
else
|
|
XTERM_CONF_OPTS += --disable-freetype
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|