collectd.h: guard define of __attribute__
[collectd.git] / src / daemon / collectd.h
index 2bfc3a2..3cb0c1b 100644 (file)
@@ -276,7 +276,9 @@ typedef int _Bool;
 
 /* Only enable __attribute__() for compilers known to support it. */
 #if !defined(__clang__) && !defined(__GNUC__)
-# define __attribute__(x) /**/
+# if !defined(__attribute__)
+#  define __attribute__(x) /**/
+# endif
 #endif
 
 #if defined(COLLECT_DEBUG) && COLLECT_DEBUG && defined(__GNUC__) && __GNUC__