To get the newt-based menuselect working, you need to have the libnewt development libraries installed:
1 2 3 | sudo yum install libnewt-devel |
1 2 3 | sudo apt-get install libnewt-dev |
If you’ve previously used menuselect with the curses interface, you need to rebuild. You can do this with the following commands:
1 2 3 4 5 6 7 8 | $ cd ~/src/asterisk-complete/asterisk/1.8./ $ cd menuselect $ make clean $ ./configure $ cd .. $ make menuselect |
After that you should have the newt-based interface available to you. Using menuselectRun the following commands to start menuselect:
1 2 3 4 | $ cd ~/src/asterisk-complete/asterisk/1.8./ $ make menuselect |