I download htop 2.0.0 and want to build it from source code on RHEL 7.1
, but “./configure
” outputs the following errors:
......
checking for addnwstr in -lncursesw6... no
checking for addnwstr in -lncursesw... no
checking for addnwstr in -lncurses... no
configure: error: You may want to use --disable-unicode or install libncursesw.
The solution is to install ncurses-devel
package:
yum install ncurses-devel
Then the configuration & build processes are smooth.
Yes now it´s workign ! tks
Thank you it works perfectly !!