diff options
author | Jamey Sharp <jamey@minilop.net> | 2009-10-28 17:48:19 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-10-28 18:59:07 -0700 |
commit | fab74d1081270fb8f1d231e6e10d10aa33e164da (patch) | |
tree | 2c660be77c367306fb228f7cfaf232e5f1027776 | |
parent | 239435875d6a92ed31731b500a992a3af0943594 (diff) |
Suppress certain GCC warnings in auto-generated code.
- Don't warn for references to deprecated functions in xorg_symbols.
- Ignore functions generated by gl_apitemp.py that are never used.
Signed-off-by: Jamey Sharp <jamey@minilop.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | glx/glapi.c | 7 | ||||
-rwxr-xr-x | hw/xfree86/loader/sdksyms.sh | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/glx/glapi.c b/glx/glapi.c index fa3808e4d..d6a568e88 100644 --- a/glx/glapi.c +++ b/glx/glapi.c @@ -114,10 +114,15 @@ warn(void) } } +#if defined(__GNUC__) && (__GNUC__ > 2) +#define possibly_unused __attribute((unused)) +#else +#define possibly_unused +#endif #define KEYWORD1 static #define KEYWORD1_ALT static -#define KEYWORD2 GLAPIENTRY +#define KEYWORD2 GLAPIENTRY possibly_unused #define NAME(func) NoOp##func #define F NULL diff --git a/hw/xfree86/loader/sdksyms.sh b/hw/xfree86/loader/sdksyms.sh index 11865472f..eea024063 100755 --- a/hw/xfree86/loader/sdksyms.sh +++ b/hw/xfree86/loader/sdksyms.sh @@ -2,6 +2,7 @@ cat > sdksyms.c << EOF /* This file is automatically generated by sdksyms.sh. */ +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" #ifdef HAVE_XORG_CONFIG_H #include <xorg-config.h> |