mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 12:32:13 +02:00
ncurses: libcurses.so should link to libncurses.so
The current libcurses (backward compat) links to libncurses.so.5.9, this causes a problem since this library also needs libtinfo, the libncurses.so, uses a "ld script" to include both, libcurses.so should point to libncurses.so (the script) not the library. (From OE-Core rev: 6e3a0c0eb6938f3f04fb42784fe1744f30762d3b) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
bbc8afb2e2
commit
1d2908d910
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://ncurses/base/version.c;beginline=1;endline=27;md5=cbc
|
||||
SECTION = "libs"
|
||||
DEPENDS = "ncurses-native"
|
||||
DEPENDS_virtclass-native = ""
|
||||
INC_PR = "r2"
|
||||
INC_PR = "r3"
|
||||
|
||||
inherit autotools binconfig multilib_header
|
||||
|
||||
@@ -161,6 +161,9 @@ do_install() {
|
||||
echo '/* GNU ld script */' >$f
|
||||
echo "INPUT($i.so.5 AS_NEEDED(-ltinfo))" >>$f
|
||||
done
|
||||
# Make sure that libcurses is linked so that it gets -ltinfo
|
||||
# also, this should be addressed upstream really.
|
||||
ln -sf libncurses.so ${D}${libdir}/libcurses.so
|
||||
|
||||
# create libtermcap.so linker script for backward compatibility
|
||||
f=${D}${libdir}/libtermcap.so
|
||||
|
||||
Reference in New Issue
Block a user