From: kyak Date: Mon, 27 Jul 2015 14:46:49 +0000 (+0300) Subject: xterm: x-includes and x-libraries must be set for cross-compiling X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f24bd7273dcec0876779a6c3949a3e5e64d44712;p=buildroot.git xterm: x-includes and x-libraries must be set for cross-compiling These flags need to be set so that the configure script would correctly use libICE from cross-toolchain rather than from host. This fix is similar to "package/efl/libevas: x-includes and x-libraries must be set for cross-compiling" done by Romain Naour on libecore. Signed-off-by: Mikhail Peselnik Reviewed-by: Romain Naour Signed-off-by: Thomas Petazzoni --- diff --git a/package/xterm/xterm.mk b/package/xterm/xterm.mk index 56f692dd21..778b40cbd8 100644 --- a/package/xterm/xterm.mk +++ b/package/xterm/xterm.mk @@ -10,6 +10,8 @@ XTERM_SITE = ftp://invisible-island.net/xterm XTERM_DEPENDENCIES = ncurses xlib_libXaw XTERM_LICENSE = MIT XTERM_LICENSE_FILES = version.c -XTERM_CONF_OPTS = --enable-256-color +XTERM_CONF_OPTS = --enable-256-color \ + --x-includes=$(STAGING_DIR)/usr/include \ + --x-libraries=$(STAGING_DIR)/usr/lib $(eval $(autotools-package))