Skip to content

Commit

Permalink
Change ncurses config options slightly so that programs like htop do …
Browse files Browse the repository at this point in the history
…not crash
  • Loading branch information
flavioc committed Dec 20, 2024
1 parent 5c1000a commit 426d702
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -574,14 +574,14 @@ install_ncurses() {
--with-shared \
--build=${HOST} \
--host=${CROSS_HURD_TARGET} \
--without-debug \
--with-debug \
--without-ada \
--with-termlib \
--enable-overwrite \
--without-cxx-binding \
--disable-widec \
--enable-normal \
--with-build-cc=gcc &&
--disable-stripping &&
make -j$PROCS &&
make -j$PROCS install.libs install.includes &&
popd
Expand All @@ -603,13 +603,15 @@ install_ncursesw() {
--with-shared \
--build=${HOST} \
--host=${CROSS_HURD_TARGET} \
--without-debug \
--with-debug \
--without-ada \
--with-termlib \
--with-termlib=tinfo \
--enable-overwrite \
--without-cxx-binding \
--enable-widec \
--with-build-cc=gcc &&
--disable-stripping \
--disable-relink \
--with-versioned-syms \
--enable-widec &&
make -j$PROCS &&
make -j$PROCS TIC_PATH=$PWD/host/progs/tic install &&
popd
Expand Down

0 comments on commit 426d702

Please sign in to comment.