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 04:24:31 -0500
commit3046bc17ed81d13899147c6e2138d0189250a8f4 (patch)
tree4d2025af0ba0ec88a2c6eb361cf08b13722172a6 /autoconf
parent8ea1c0aa81e5bd17e5a46fbd6360829755f041b0 (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)