63f5f44e61
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/ [Peter: use --with-ncurses-include-dir=none instead] Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# pinentry
|
|
#
|
|
################################################################################
|
|
|
|
PINENTRY_VERSION = 0.9.0
|
|
PINENTRY_SOURCE = pinentry-$(PINENTRY_VERSION).tar.bz2
|
|
PINENTRY_SITE = ftp://ftp.gnupg.org/gcrypt/pinentry
|
|
PINENTRY_LICENSE = GPLv2+
|
|
PINENTRY_LICENSE_FILES = COPYING
|
|
PINENTRY_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
PINENTRY_CONF_OPTS += --without-libcap # requires PAM
|
|
|
|
# build with X if available
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
|
PINENTRY_CONF_OPTS += --with-x
|
|
else
|
|
PINENTRY_CONF_OPTS += --without-x
|
|
endif
|
|
|
|
# pinentry-ncurses backend
|
|
ifeq ($(BR2_PACKAGE_PINENTRY_NCURSES),y)
|
|
PINENTRY_CONF_OPTS += --enable-ncurses --with-ncurses-include-dir=none
|
|
PINENTRY_DEPENDENCIES += ncurses
|
|
else
|
|
PINENTRY_CONF_OPTS += --disable-ncurses
|
|
endif
|
|
|
|
# pinentry-gtk2 backend
|
|
ifeq ($(BR2_PACKAGE_PINENTRY_GTK2),y)
|
|
PINENTRY_CONF_OPTS += --enable-pinentry-gtk2
|
|
PINENTRY_DEPENDENCIES += libgtk2
|
|
else
|
|
PINENTRY_CONF_OPTS += --disable-pinentry-gtk2
|
|
endif
|
|
|
|
# pinentry-qt4 backend
|
|
ifeq ($(BR2_PACKAGE_PINENTRY_QT4),y)
|
|
# -pthread needs to be passed for certain toolchains
|
|
# http://autobuild.buildroot.net/results/6be/6be109ccedec603a67cebdb31b55865dcce0e128/
|
|
PINENTRY_CONF_OPTS += LIBS=-pthread
|
|
PINENTRY_CONF_OPTS += --enable-pinentry-qt4
|
|
PINENTRY_DEPENDENCIES += qt
|
|
else
|
|
PINENTRY_CONF_OPTS += --disable-pinentry-qt4
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|