[svn-commits] file: trunk r65253 - in /trunk: ./ res/res_agi.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Sun May 20 11:01:06 MST 2007
Author: file
Date: Sun May 20 13:01:05 2007
New Revision: 65253
URL: http://svn.digium.com/view/asterisk?view=rev&rev=65253
Log:
Merged revisions 65250 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r65250 | file | 2007-05-20 13:59:58 -0400 (Sun, 20 May 2007) | 2 lines
res_agi needs to export two symbols (ast_agi_register and ast_agi_unregister) for usage by others. (issue #9755 reported by mnicholson)
........
Modified:
trunk/ (props changed)
trunk/res/res_agi.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_agi.c?view=diff&rev=65253&r1=65252&r2=65253
==============================================================================
--- trunk/res/res_agi.c (original)
+++ trunk/res/res_agi.c Sun May 20 13:01:05 2007
@@ -2177,4 +2177,7 @@
return ast_register_application(app, agi_exec, synopsis, descrip);
}
-AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Asterisk Gateway Interface (AGI)");
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "Asterisk Gateway Interface (AGI)",
+ .load = load_module,
+ .unload = unload_module,
+ );
More information about the svn-commits
mailing list