summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authoribercom <ibercom123@gmail.com>2015-06-09 20:41:54 +0200
committeribercom <ibercom123@gmail.com>2015-06-10 11:18:25 +0200
commitf897f36721d1fa3a09403c67c1a6f21f0f014213 (patch)
tree5fbd1e0bf4d3178fe83bdc98d5ce9af4b7b23bc0 /autoconf
parentbbeb753e5ed21f6a21242a24092b0d71d9d6c75c (diff)
weakref attribute detection broken with gcc 4.6 and higher
GCC 4.7 Manual: http://gcc.gnu.org/onlinedocs/gcc-4.7.4/gcc/Function-Attributes.html weakref ("target") A weak reference is an alias that does not by itself require a definition to be given for the target symbol. ASTERISK-22559 #close Reported by: Ibercom Change-Id: I36a136cae947b65187a697533416f9ff9a0b8cdf
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/ast_gcc_attribute.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/ast_gcc_attribute.m4 b/autoconf/ast_gcc_attribute.m4
index bceaa28a3..4ade81404 100644
--- a/autoconf/ast_gcc_attribute.m4
+++ b/autoconf/ast_gcc_attribute.m4
@@ -20,7 +20,7 @@ AC_COMPILE_IFELSE(
)
else
AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([$3 void __attribute__(($2)) *test(void *muffin, ...) {return (void *) 0;}],
+ [AC_LANG_PROGRAM([$3 void __attribute__(($2)) *test(void *muffin, ...) ;],
[])],
AC_MSG_RESULT(yes)
m4_ifval([$4],$4=1)