From 4855c9229f00927a343f563db58e261db8a187fa Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Sequoia Date: Mon, 19 Sep 2016 13:10:34 -0700 Subject: [PATCH] Xfuncproto.h: Define __has_feature() if it isn't already Signed-off-by: Jeremy Huddleston Sequoia Reviewed-by: Keith Packard --- Xfuncproto.h.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Xfuncproto.h.in b/Xfuncproto.h.in index 5daa83e..8556c27 100644 --- a/Xfuncproto.h.in +++ b/Xfuncproto.h.in @@ -79,6 +79,9 @@ in this Software without prior written authorization from The Open Group. #ifndef __has_attribute # define __has_attribute(x) 0 /* Compatibility with non-clang compilers. */ #endif +#ifndef __has_feature +# define __has_feature(x) 0 /* Compatibility with non-clang compilers. */ +#endif /* Added in X11R6.9, so available in any version of modular xproto */ #if __has_attribute(__sentinel__) || (defined(__GNUC__) && (__GNUC__ >= 4))