From mboxrd@z Thu Jan 1 00:00:00 1970 From: Romain Naour Date: Mon, 27 Jul 2015 17:04:51 +0200 Subject: [Buildroot] [PATCH 2/2] package/xterm: compile with libXft support when it selected In-Reply-To: <1438008410-1465-2-git-send-email-bas@bmail.ru> References: <1438008410-1465-1-git-send-email-bas@bmail.ru> <1438008410-1465-2-git-send-email-bas@bmail.ru> Message-ID: <55B64893.8010801@openwide.fr> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Hi Mikhail, Le 27/07/2015 16:46, Mikhail Peselnik a ?crit : > 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 Thanks for your patches! Reviewed-by: Romain Naour [Build tested only and checked that the libXft library is detected by the configure script "checking if we can link with FreeType libraries... yes"] Tested-by: Romain Naour Best regards, Romain > --- > package/xterm/xterm.mk | 10 +++++++++- > 1 file changed, 9 insertions(+), 1 deletion(-) > > diff --git a/package/xterm/xterm.mk b/package/xterm/xterm.mk > index 778b40c..e7afff2 100644 > --- a/package/xterm/xterm.mk > +++ b/package/xterm/xterm.mk > @@ -7,11 +7,19 @@ > XTERM_VERSION = 314 > XTERM_SOURCE = xterm-$(XTERM_VERSION).tgz > XTERM_SITE = ftp://invisible-island.net/xterm > -XTERM_DEPENDENCIES = ncurses xlib_libXaw > +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)) >