summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-03-20 19:30:04 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-23 17:43:00 +0100
commite662f466bc29b6495eac96219f3963268d96e5d6 (patch)
treef565a8d36d4b847f844a6a58e231ebb16f562121 /meta
parentccefb1eb89dd914c128d9fb6d49c8c7304ba47c5 (diff)
downloadpoky-e662f466bc29b6495eac96219f3963268d96e5d6.tar.gz
ncurses: Abstract out termlib
termlib needs to be disabled on some targets e.g. mingw this change paves the way for doing that. Functionally it does not change anything for other platforms (From OE-Core rev: 88f33e1e5ba4f85093f60a296cba3ee1c1341c43) (From OE-Core rev: 82fc84b059367917690336d279cd8cab679d63ed) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-core/ncurses/ncurses.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc
index 8753852719..01e41d5f73 100644
--- a/meta/recipes-core/ncurses/ncurses.inc
+++ b/meta/recipes-core/ncurses/ncurses.inc
@@ -59,6 +59,7 @@ EX_TERMCAP_class-nativesdk = ":/etc/termcap:/usr/share/misc/termcap"
59EX_TERMINFO = "" 59EX_TERMINFO = ""
60EX_TERMINFO_class-native = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo" 60EX_TERMINFO_class-native = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo"
61EX_TERMINFO_class-nativesdk = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo" 61EX_TERMINFO_class-nativesdk = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo"
62EX_TERMLIB ?= "tinfo"
62 63
63# Helper function for do_configure to allow multiple configurations 64# Helper function for do_configure to allow multiple configurations
64# $1 the directory to run configure in 65# $1 the directory to run configure in
@@ -80,7 +81,7 @@ ncurses_configure() {
80 --disable-big-core \ 81 --disable-big-core \
81 --program-prefix= \ 82 --program-prefix= \
82 --with-ticlib \ 83 --with-ticlib \
83 --with-termlib=tinfo \ 84 --with-termlib=${EX_TERMLIB} \
84 --enable-sigwinch \ 85 --enable-sigwinch \
85 --enable-pc-files \ 86 --enable-pc-files \
86 --disable-rpath-hack \ 87 --disable-rpath-hack \