diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-07-14 17:38:00 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-07-14 17:38:00 +0000 |
commit | cc34de2be6207c2f8a6466c76d89a7952e2e6d0c (patch) | |
tree | 3a35eee1f34d49605fcecfc284d05612124ff211 /include/modules.h | |
parent | 18c0fe03fc7688a739ac7cb69717cabe23df872b (diff) |
# BUILD : 1.7.14 (1087) # BUGS : 545 550 541 # NOTES : Various fixes.
git-svn-id: svn://svn.anope.org/anope/trunk@1087 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@811 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/modules.h b/include/modules.h index 49d7a8dbd..30d346150 100644 --- a/include/modules.h +++ b/include/modules.h @@ -32,11 +32,7 @@ typedef HMODULE ano_module_t; #else typedef void * ano_module_t; -#ifdef HAS_RTLD_LOCAL -#define ano_modopen(file) dlopen(file, RTLD_LAZY|RTLD_LOCAL) -#else #define ano_modopen(file) dlopen(file, RTLD_LAZY) -#endif #define ano_moderr() dlerror() #define ano_modsym(file, symbol) dlsym(file, DL_PREFIX symbol) #define ano_modclose(file) dlclose(file) |