From: Neil Schemenauer Date: Tue, 23 Oct 2001 02:20:37 +0000 (+0000) Subject: Hide GCC attributes fom compilers that don't support them. X-Git-Tag: v2.2.1c1~1098 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=156910851e31d4e7f8d1441a3b05a44b31349adf;p=python Hide GCC attributes fom compilers that don't support them. --- diff --git a/Include/pyport.h b/Include/pyport.h index 5f8ccf7c13..9c19e7a926 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -446,4 +446,13 @@ typedef struct fd_set { } #endif +/* + * Hide GCC attributes from compilers that don't support them. + */ +#if !defined(__GNUC__) || __GNUC__ < 2 || \ + (__GNUC__ == 2 && __GNUC_MINOR__ < 7) || \ + defined(NEXT) +#define __attribute__(__x) +#endif + #endif /* Py_PYPORT_H */