From: Anthony Minessale Date: Fri, 30 Jan 2009 01:21:05 +0000 (+0000) Subject: use global symbols in mod_python X-Git-Tag: v1.0.3~516 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eed3042975791ed5c8088aa84b033b86b738c432;p=thirdparty%2Ffreeswitch.git use global symbols in mod_python git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11560 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/languages/mod_python/mod_python.c b/src/mod/languages/mod_python/mod_python.c index 1853ceb773..85b25efa30 100644 --- a/src/mod/languages/mod_python/mod_python.c +++ b/src/mod/languages/mod_python/mod_python.c @@ -52,7 +52,7 @@ static switch_api_interface_t python_run_interface; SWITCH_MODULE_LOAD_FUNCTION(mod_python_load); SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_python_shutdown); -SWITCH_MODULE_DEFINITION(mod_python, mod_python_load, mod_python_shutdown, NULL); +SWITCH_MODULE_DEFINITION_EX(mod_python, mod_python_load, mod_python_shutdown, NULL, SMODF_GLOBAL_SYMBOLS); static struct { switch_memory_pool_t *pool;