[asterisk-commits] rizzo: trunk r89367 - /trunk/main/loader.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Nov 17 03:51:46 CST 2007
Author: rizzo
Date: Sat Nov 17 03:51:45 2007
New Revision: 89367
URL: http://svn.digium.com/view/asterisk?view=rev&rev=89367
Log:
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.
Modified:
trunk/main/loader.c
Modified: trunk/main/loader.c
URL: http://svn.digium.com/view/asterisk/trunk/main/loader.c?view=diff&rev=89367&r1=89366&r2=89367
==============================================================================
--- trunk/main/loader.c (original)
+++ trunk/main/loader.c Sat Nov 17 03:51:45 2007
@@ -61,6 +61,10 @@
#define RTLD_NOW 0
#endif
+#ifndef RTLD_LOCAL
+#define RTLD_LOCAL 0
+#endif
+
struct ast_module_user {
struct ast_channel *chan;
AST_LIST_ENTRY(ast_module_user) entry;
More information about the asterisk-commits
mailing list