Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mnail

Pages: [1]
2
"cdr_camate.c:181: warning: implicit declaration of function `ast_load'
cdr_camate.c:181: warning: assignment makes pointer from integer without a cast
cdr_camate.c:226: warning: implicit declaration of function `ast_destroy'"

Change line 181
Original
cf = ast_load(cf_file);
Modified
cf = ast_config_load(cf_file);

And line 226
Original
ast_destroy(cf);
Modified
ast_config_destroy(cf);

Then redo - make clean && make

Then copy the callmate.so over to your lib/asterisk/modules directory

Enjoy!

Compliments of Moritz BMW
Pages: [1]