diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-23 18:19:02 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-23 18:19:02 -0500 |
commit | 8626a0206a62795752161b9fbd69d89d22a195c6 (patch) | |
tree | 8e5dfc13cd5f92b2a4d862b7a2e27666d8eaea31 /chapter8 | |
parent | d751c4badd504acd5b3d0c63f86db8c9745b3c88 (diff) |
Add libtinfo to ncurses for BLFS libedit. Some packages will want to find libtinfo from ncurses. Add --disable-tic-depends to get libtinfow per INSTALL document.
Diffstat (limited to 'chapter8')
-rw-r--r-- | chapter8/ncurses.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chapter8/ncurses.sh b/chapter8/ncurses.sh index c7ba368..2b82d69 100644 --- a/chapter8/ncurses.sh +++ b/chapter8/ncurses.sh @@ -7,14 +7,16 @@ set -e --without-debug \ --without-normal \ --enable-pc-files \ - --enable-widec && + --enable-widec \ + --with-termlib \ + --disable-tic-depends && make && make -j1 install && mv -v /usr/lib/libncursesw.so.6* /lib && ln -sfv ../../lib/"$(readlink /usr/lib/libncursesw.so)" /usr/lib/libncursesw.so && -for lib in ncurses form panel menu ; do +for lib in ncurses form panel menu tinfo ; do rm -vf /usr/lib/lib"${lib}".so && echo "INPUT(-l${lib}w)" > /usr/lib/lib"${lib}".so && ln -sfv "${lib}"w.pc /usr/lib/pkgconfig/"${lib}".pc |