mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-25 20:00:06 +01:00
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>
(cherry picked from commit fab74d1081)
This commit is contained in:
parent
6ca6283bce
commit
4caa7982ef
2 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue