I will like to find out if I will be able to change the menuselect file with out doing it manually. I have a script that run and will like to have ./configure add in app_mysql.so cdr_mysql.so and res_config_mysql and on top of that I have no need for any asterisk sound files thus also disabling the sound and music on hold files.
cd /usr/src/asterisk-11.6.0
./configure
How can I change the following to include and remove the files I want with
make
I have tried this before:
make
make menuselect.makeopts
menuselect/menuselect --enable app_mysql --enable cdr_mysql --enable res_config_mysql menuselect.makeopts
However can’t one have ./configure or make audio change this.
I have also found that
make menuselect
Generates a file [quote]menuselect-tree[/quote] with I can edit to enable to disable these applications or sound files.
However its long process and can’t ./configure resolve this issue for me?