diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-23 18:19:21 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-23 18:19:21 -0500 |
commit | a2f0ff9b64f7610965c4e5a98bc44a49acaf4f9c (patch) | |
tree | 8e5dfc13cd5f92b2a4d862b7a2e27666d8eaea31 /chapter8/ncurses.sh | |
parent | 07474854b7728c812d80bf210eb536056136027d (diff) | |
parent | 8626a0206a62795752161b9fbd69d89d22a195c6 (diff) |
Merge branch 'master' into cleanup
Diffstat (limited to 'chapter8/ncurses.sh')
-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 |