]> git.meshlink.io Git - meshlink/blobdiff - m4/attribute.m4
Remove everything GPL that is not copyright Guus Sliepen, update copyright statements.
[meshlink] / m4 / attribute.m4
index 6a8f5558c9ef9b53a6744e03e2e507a5e48f6c06..11142d8ed919344848a030796505dfc07d5a9935 100644 (file)
@@ -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
 ])