git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9605
d0543943-73ff-0310-b7d9-
9358b9ac24b2
#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] == ')')