summaryrefslogtreecommitdiff
path: root/menuselect
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 /menuselect
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 'menuselect')
-rwxr-xr-xmenuselect/configure8
1 files changed, 4 insertions, 4 deletions
diff --git a/menuselect/configure b/menuselect/configure
index 508137138..648091e5f 100755
--- a/menuselect/configure
+++ b/menuselect/configure
@@ -3227,7 +3227,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
- void __attribute__(()) *test(void *muffin, ...) {return (void *) 0;}
+ void __attribute__(()) *test(void *muffin, ...) ;
int
main ()
{
@@ -3299,7 +3299,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
- void __attribute__(()) *test(void *muffin, ...) {return (void *) 0;}
+ void __attribute__(()) *test(void *muffin, ...) ;
int
main ()
{
@@ -3371,7 +3371,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-static void __attribute__((weakref("foo"))) *test(void *muffin, ...) {return (void *) 0;}
+static void __attribute__((weakref("foo"))) *test(void *muffin, ...) ;
int
main ()
{
@@ -3445,7 +3445,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-static void __attribute__((weakref("foo"))) *test(void *muffin, ...) {return (void *) 0;}
+static void __attribute__((weakref("foo"))) *test(void *muffin, ...) ;
int
main ()
{