diff mbox series

package/xterm: Avoid freetype2 path poisoning using imake

Message ID 20180327074434.15306-1-valentin.korenblit@smile.fr
State Accepted
Headers show
Series package/xterm: Avoid freetype2 path poisoning using imake | expand

Commit Message

Valentin Korenblit March 27, 2018, 7:44 a.m. UTC
When imake is installed on the host, it tries to include
freetype headers from host, so we must override ac_cv_path_IMAKE
to avoid this.

Extract from config.log:

configure:14803: checking if we should use imake to help
configure:14820: result: yes
configure:14829: checking for xmkmf
configure:14846: found /usr/bin/xmkmf
configure:14857: result: /usr/bin/xmkmf
configure:14920: testing Using /usr/bin/xmkmf  ...
configure:15015: testing IMAKE_CFLAGS  -I. -I/usr/include/freetype2

Signed-off-by: Valentin Korenblit <valentin.korenblit@smile.fr>
---
 package/xterm/xterm.mk | 3 +++
 1 file changed, 3 insertions(+)

Comments

Romain Naour March 30, 2018, 9:01 p.m. UTC | #1
Hi Valentin, All,

Le 27/03/2018 à 09:44, Valentin Korenblit a écrit :
> When imake is installed on the host, it tries to include
> freetype headers from host, so we must override ac_cv_path_IMAKE
> to avoid this.
> 
> Extract from config.log:
> 
> configure:14803: checking if we should use imake to help
> configure:14820: result: yes
> configure:14829: checking for xmkmf
> configure:14846: found /usr/bin/xmkmf
> configure:14857: result: /usr/bin/xmkmf
> configure:14920: testing Using /usr/bin/xmkmf  ...
> configure:15015: testing IMAKE_CFLAGS  -I. -I/usr/include/freetype2
> 
> Signed-off-by: Valentin Korenblit <valentin.korenblit@smile.fr>
> ---
>  package/xterm/xterm.mk | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/package/xterm/xterm.mk b/package/xterm/xterm.mk
> index 645de92e22..ff2b77459e 100644
> --- a/package/xterm/xterm.mk
> +++ b/package/xterm/xterm.mk
> @@ -14,6 +14,9 @@ XTERM_CONF_OPTS = --enable-256-color \
>  	--x-includes=$(STAGING_DIR)/usr/include \
>  	--x-libraries=$(STAGING_DIR)/usr/lib
>  
> +# Avoid freetype2 path poisoning using imake
> +XTERM_CONF_ENV = ac_cv_path_IMAKE=
> +

If you look at other ac_cv_path_* override on other packages, the syntax should be:
XTERM_CONF_ENV = ac_cv_path_IMAKE=""

This can be fixed while commiting.

With that fixed:

    Reviewed-by: Romain Naour <romain.naour@smile.fr>


Best regards,
Romain


>  ifeq ($(BR2_PACKAGE_XLIB_LIBXFT),y)
>  XTERM_DEPENDENCIES += xlib_libXft
>  XTERM_CONF_OPTS += --enable-freetype \
>
Thomas Petazzoni March 31, 2018, 8:57 p.m. UTC | #2
Hello,

On Tue, 27 Mar 2018 09:44:34 +0200, Valentin Korenblit wrote:
> When imake is installed on the host, it tries to include
> freetype headers from host, so we must override ac_cv_path_IMAKE
> to avoid this.
> 
> Extract from config.log:
> 
> configure:14803: checking if we should use imake to help
> configure:14820: result: yes
> configure:14829: checking for xmkmf
> configure:14846: found /usr/bin/xmkmf
> configure:14857: result: /usr/bin/xmkmf
> configure:14920: testing Using /usr/bin/xmkmf  ...
> configure:15015: testing IMAKE_CFLAGS  -I. -I/usr/include/freetype2
> 
> Signed-off-by: Valentin Korenblit <valentin.korenblit@smile.fr>
> ---
>  package/xterm/xterm.mk | 3 +++
>  1 file changed, 3 insertions(+)

Applied to master after adjusting to ac_cv_path_IMAKE="" as suggested
by Romain.

Thanks!

Thomas
Peter Korsgaard April 11, 2018, 3:48 p.m. UTC | #3
>>>>> "Valentin" == Valentin Korenblit <valentin.korenblit@smile.fr> writes:

 > When imake is installed on the host, it tries to include
 > freetype headers from host, so we must override ac_cv_path_IMAKE
 > to avoid this.

 > Extract from config.log:

 > configure:14803: checking if we should use imake to help
 > configure:14820: result: yes
 > configure:14829: checking for xmkmf
 > configure:14846: found /usr/bin/xmkmf
 > configure:14857: result: /usr/bin/xmkmf
 > configure:14920: testing Using /usr/bin/xmkmf  ...
 > configure:15015: testing IMAKE_CFLAGS  -I. -I/usr/include/freetype2

 > Signed-off-by: Valentin Korenblit <valentin.korenblit@smile.fr>

Committed to 2017.02.x, thanks.
diff mbox series

Patch

diff --git a/package/xterm/xterm.mk b/package/xterm/xterm.mk
index 645de92e22..ff2b77459e 100644
--- a/package/xterm/xterm.mk
+++ b/package/xterm/xterm.mk
@@ -14,6 +14,9 @@  XTERM_CONF_OPTS = --enable-256-color \
 	--x-includes=$(STAGING_DIR)/usr/include \
 	--x-libraries=$(STAGING_DIR)/usr/lib
 
+# Avoid freetype2 path poisoning using imake
+XTERM_CONF_ENV = ac_cv_path_IMAKE=
+
 ifeq ($(BR2_PACKAGE_XLIB_LIBXFT),y)
 XTERM_DEPENDENCIES += xlib_libXft
 XTERM_CONF_OPTS += --enable-freetype \