UPDATE Got a new,simpler, way to do this here
There is a bug in the recent asterisk-addons package shipped with Ubuntu 10.04
The result is that all the modules that are part of the package fail to load with a message like this
Till this get fixed by the Ubuntu people here a quick fix
There is a bug in the recent asterisk-addons package shipped with Ubuntu 10.04
The result is that all the modules that are part of the package fail to load with a message like this
WARNING[13478]: loader.c:800 load_resource: Module 'app_addon_sql_mysql' could not be loaded.
Till this get fixed by the Ubuntu people here a quick fix
sudo aptitude install asterisk-dev
wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-addons-1.6.2.1.tar.gz
tar xvzf asterisk-addons-1.6.2.1.tar.gz
cd asterisk-addons-1.6.2.1
./configure
make
sudo su
cp -a apps/*.so /usr/lib/asterisk/modules/
cp -a cdr/*.so /usr/lib/asterisk/modules/
cp -a channels/*.so /usr/lib/asterisk/modules/
cp -a formats/*.so /usr/lib/asterisk/modules/
1 comment:
Thanks so much for this, I was having a nightmare getting asterisk addons to compile
Post a Comment