From a67790c6f53e4b002556eca8438dbd56994ea056 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Sun, 2 Nov 2008 23:34:39 +0000 Subject: instead of trying to forcibly load res_agi when app_stack is loaded (even if the administrator didn't want it loaded), use GCC weak symbols to determine whether it was loaded already or not; if it was loaded, then use it. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@153709 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/compiler.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/asterisk/compiler.h') diff --git a/include/asterisk/compiler.h b/include/asterisk/compiler.h index b2db7ffdb..0468cd3d9 100644 --- a/include/asterisk/compiler.h +++ b/include/asterisk/compiler.h @@ -68,4 +68,10 @@ /* Some older version of GNU gcc (3.3.5 on OpenBSD 4.3 for example) dont like 'NULL' as sentinel */ #define SENTINEL ((char *)NULL) +#ifdef HAVE_ATTRIBUTE_weak +#define attribute_weak __attribute__((weak)) +#else +#define attribute_weak +#endif + #endif /* _ASTERISK_COMPILER_H */ -- cgit v1.2.3