[Home]

Summary:ASTERISK-17779: Error loading module 'res_pktccops': /usr/lib/asterisk/modules/res_pktccops.so: cannot open shared object file: No such file or
Reporter:Sandr (sandr)Labels:
Date Opened:2011-05-02 12:10:24Date Closed:2011-06-07 14:00:57
Priority:MajorRegression?No
Status:Closed/CompleteComponents:Channels/chan_mgcp
Versions:1.8.3 Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:Error loading module 'res_pktccops': /usr/lib/asterisk/modules/res_pktccops.so: cannot open shared object file: No such file or directory
Ubuntu 11.04
gcc-4.5
GNU ld (GNU Binutils for Ubuntu) 2.21.0.20110327

Comments:By: Tilghman Lesher (tilghman) 2011-05-02 13:44:59

res_pktccops is an optional module.  Because of this, you can opt not to compile it, even while chan_mgcp is compiled and loaded.  If you have a statement forcing res_pktccops to load in modules.conf, and it's not there, this is the message you will get.  Simply use 'make menuselect' and select res_pktccops for compilation.

By: Sandr (sandr) 2011-05-02 14:11:37

thanks!