Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] pinentry: fix ncurses' unsafe header path
@ 2015-02-27 16:38 Vicente Olivert Riera
  2015-02-27 23:06 ` Peter Korsgaard
  0 siblings, 1 reply; 2+ messages in thread
From: Vicente Olivert Riera @ 2015-02-27 16:38 UTC (permalink / raw)
  To: buildroot

pinentry sets the NCURSES_INCLUDE variable in the Makefile to
/usr/include/ncurses and that causes problems when cross-compiling
because it fails with an error like this one:

Making all in curses
make[3]: Entering directory `/br/output/build/pinentry-0.9.0/curses'
/br/output/host/usr/bin/mips64el-ctng_n64-linux-gnu-gcc -DHAVE_CONFIG_H
-I. -I..  -I/usr/include/ncursesw -I../pinentry -D_LARGEFILE_SOURCE
-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Wall  -D_LARGEFILE_SOURCE
-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64   -Os  -Wall -Wcast-align
-Wshadow -Wstrict-prototypes -Wno-pointer-sign -c pinentry-curses.c
mips64el-ctng_n64-linux-gnu-gcc: ERROR: unsafe header/library path used
in cross-compilation: '/usr/include/ncursesw'
make[3]: *** [pinentry-curses.o] Error 1

Fixes:

  http://autobuild.buildroot.net/results/5b9/5b9b53a37f7cf4bab4d989f852726a0f0885605f/

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 package/pinentry/pinentry.mk |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/pinentry/pinentry.mk b/package/pinentry/pinentry.mk
index f34cc0e..b38ebb4 100644
--- a/package/pinentry/pinentry.mk
+++ b/package/pinentry/pinentry.mk
@@ -21,6 +21,7 @@ endif
 
 # pinentry-ncurses backend
 ifeq ($(BR2_PACKAGE_PINENTRY_NCURSES),y)
+PINENTRY_CONF_ENV += inetutils_cv_includedir_ncurses=$(STAGING_DIR)/usr/include/ncurses
 PINENTRY_CONF_OPTS += --enable-ncurses
 PINENTRY_DEPENDENCIES += ncurses
 else
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH] pinentry: fix ncurses' unsafe header path
  2015-02-27 16:38 [Buildroot] [PATCH] pinentry: fix ncurses' unsafe header path Vicente Olivert Riera
@ 2015-02-27 23:06 ` Peter Korsgaard
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2015-02-27 23:06 UTC (permalink / raw)
  To: buildroot

>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:

 > pinentry sets the NCURSES_INCLUDE variable in the Makefile to
 > /usr/include/ncurses and that causes problems when cross-compiling
 > because it fails with an error like this one:

 > Making all in curses
 > make[3]: Entering directory `/br/output/build/pinentry-0.9.0/curses'
 > /br/output/host/usr/bin/mips64el-ctng_n64-linux-gnu-gcc -DHAVE_CONFIG_H
 > -I. -I..  -I/usr/include/ncursesw -I../pinentry -D_LARGEFILE_SOURCE
 > -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Wall  -D_LARGEFILE_SOURCE
 > -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64   -Os  -Wall -Wcast-align
 > -Wshadow -Wstrict-prototypes -Wno-pointer-sign -c pinentry-curses.c
 > mips64el-ctng_n64-linux-gnu-gcc: ERROR: unsafe header/library path used
 > in cross-compilation: '/usr/include/ncursesw'
 > make[3]: *** [pinentry-curses.o] Error 1

 > Fixes:

 >   http://autobuild.buildroot.net/results/5b9/5b9b53a37f7cf4bab4d989f852726a0f0885605f/

 > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
 > ---
 >  package/pinentry/pinentry.mk |    1 +
 >  1 files changed, 1 insertions(+), 0 deletions(-)

 > diff --git a/package/pinentry/pinentry.mk b/package/pinentry/pinentry.mk
 > index f34cc0e..b38ebb4 100644
 > --- a/package/pinentry/pinentry.mk
 > +++ b/package/pinentry/pinentry.mk
 > @@ -21,6 +21,7 @@ endif
 
 >  # pinentry-ncurses backend
 >  ifeq ($(BR2_PACKAGE_PINENTRY_NCURSES),y)
 > +PINENTRY_CONF_ENV += inetutils_cv_includedir_ncurses=$(STAGING_DIR)/usr/include/ncurses

Thanks, but we don't actually install anything under
$(STAGING_DIR)/usr/include/ncurses (it is directly in
$(STAGING_DIR)/usr/include). Looking at the configure script, the
documented way of not adding a special -I for ncurses is simply to pass
--with-ncurses-include-dir=none so I've changed it to use that instead.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-02-27 23:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-27 16:38 [Buildroot] [PATCH] pinentry: fix ncurses' unsafe header path Vicente Olivert Riera
2015-02-27 23:06 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox