提交 4b89516b authored 作者: Michael Jerris's avatar Michael Jerris

hack for now until we ditch apr dso code completely

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9605 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 be3df211
......@@ -120,10 +120,10 @@ APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle,
#if defined(OSF1) || defined(SEQUENT) || defined(SNI) ||\
(defined(__FreeBSD_version) && (__FreeBSD_version >= 220000)) ||\
defined(__DragonFly__)
void *os_handle = dlopen((char *)path, RTLD_NOW | RTLD_GLOBAL);
void *os_handle = dlopen((char *)path, RTLD_NOW | RTLD_LOCAL);
#else
int flags = RTLD_NOW | RTLD_GLOBAL;
int flags = RTLD_NOW | RTLD_LOCAL;
void *os_handle;
#ifdef _AIX
if (strchr(path + 1, '(') && path[strlen(path) - 1] == ')')
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论