]> code.ossystems Code Review - openembedded-core.git/commitdiff
ncurses: Abstract out termlib
authorKhem Raj <raj.khem@gmail.com>
Wed, 21 Mar 2018 02:30:04 +0000 (19:30 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 25 Mar 2018 08:33:36 +0000 (09:33 +0100)
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

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-core/ncurses/ncurses.inc

index 0bfd644d18f30654db0d1855a470d239b3dcf3bc..9d06987d1c9a64b7d2400f0b994dc026f689fde9 100644 (file)
@@ -59,6 +59,7 @@ EX_TERMCAP_class-nativesdk = ":/etc/termcap:/usr/share/misc/termcap"
 EX_TERMINFO = ""
 EX_TERMINFO_class-native = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo"
 EX_TERMINFO_class-nativesdk = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo"
+EX_TERMLIB ?= "tinfo"
 
 # Helper function for do_configure to allow multiple configurations
 # $1 the directory to run configure in
@@ -80,7 +81,7 @@ ncurses_configure() {
                --disable-big-core \
                --program-prefix= \
                --with-ticlib \
-               --with-termlib=tinfo \
+               --with-termlib=${EX_TERMLIB} \
                --enable-sigwinch \
                --enable-pc-files \
                --disable-rpath-hack \