Skip to content
Snippets Groups Projects
Commit 6cca49b9 authored by Luigi Rizzo's avatar Luigi Rizzo
Browse files

define RTLD_LOCAL for platforms that don't have it.

This is only to complete the build, clearly the linker
behaviour will be completely different and likely to
cause trouble in those cases.



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89367 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 270b6d97
Branches
Tags
No related merge requests found
...@@ -61,6 +61,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") ...@@ -61,6 +61,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#define RTLD_NOW 0 #define RTLD_NOW 0
#endif #endif
#ifndef RTLD_LOCAL
#define RTLD_LOCAL 0
#endif
struct ast_module_user { struct ast_module_user {
struct ast_channel *chan; struct ast_channel *chan;
AST_LIST_ENTRY(ast_module_user) entry; AST_LIST_ENTRY(ast_module_user) entry;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment