X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=m4%2Fattribute.m4;h=11142d8ed919344848a030796505dfc07d5a9935;hb=fc7a1cc27751514e3175c9c50781d724a91d0f0e;hp=58b8346723f1ba7bf7d25c02530da2579f703a4b;hpb=013a2e159e42c46808ea8d0b6abd57525db30a50;p=meshlink diff --git a/m4/attribute.m4 b/m4/attribute.m4 index 58b83467..11142d8e 100644 --- a/m4/attribute.m4 +++ b/m4/attribute.m4 @@ -1,9 +1,9 @@ dnl Check to find out whether function attributes are supported. dnl If they are not, #define them to be nothing. -AC_DEFUN(tinc_ATTRIBUTE, +AC_DEFUN([MeshLink_ATTRIBUTE], [ - AC_CACHE_CHECK([for working $1 attribute], tinc_cv_attribute_$1, + AC_CACHE_CHECK([for working $1 attribute], MeshLink_cv_attribute_$1, [ tempcflags="$CFLAGS" CFLAGS="$CFLAGS -Wall -Werror" @@ -13,13 +13,13 @@ AC_DEFUN(tinc_ATTRIBUTE, void test(void) { return; } ], )], - [tinc_cv_attribute_$1=yes], - [tinc_cv_attribute_$1=no] + [MeshLink_cv_attribute_$1=yes], + [MeshLink_cv_attribute_$1=no] ) CFLAGS="$tempcflags" ]) - if test ${tinc_cv_attribute_$1} = no; then + if test ${MeshLink_cv_attribute_$1} = no; then AC_DEFINE([$1], [], [Defined if the $1 attribute is not supported.]) fi ])