diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-04-24 19:39:26 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-04-24 19:39:26 -0700 |
commit | e05d7abbcf880099058b699ac52f65edcac95582 (patch) | |
tree | 89f08bae171474b5e4060b1586c27c5ccaa04128 | |
parent | 27ae0ad1406a33919ea9f76034495bca7cccf051 (diff) |
Silence warnings when building with clang
/usr/X11/include/X11/Xtrans/Xtransint.h:349:12: error: unused function 'is_numeric' [-Werror,-Wunused-function]
static int is_numeric (
^
/usr/X11/include/X11/Xtrans/Xtransint.h:354:12: error: unused function 'trans_mkdir' [-Werror,-Wunused-function]
static int trans_mkdir (
^
In file included from /usr/X11/include/X11/Xtrans/transport.c:67:
...
fatal error: too many errors emitted, stopping now [-ferror-limit=]
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
-rw-r--r-- | Xtrans.h | 8 | ||||
-rw-r--r-- | Xtransint.h | 10 | ||||
-rw-r--r-- | transport.c | 10 |
3 files changed, 28 insertions, 0 deletions
@@ -57,6 +57,11 @@ from The Open Group. #include <sys/socket.h> #endif +#ifdef __clang__ +/* Not all clients make use of all provided statics */ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunused-function" +#endif /* * Set the functions names according to where this code is being compiled. @@ -127,6 +132,9 @@ static char* __xtransname = "_XTrans"; #endif #endif /* !TRANS */ +#ifdef __clang__ +#pragma clang diagnostic pop +#endif /* * Create a single address structure that can be used wherever diff --git a/Xtransint.h b/Xtransint.h index dd1f683..ff3fd0b 100644 --- a/Xtransint.h +++ b/Xtransint.h @@ -307,6 +307,12 @@ typedef struct _Xtransport_table { /* Flags to preserve when setting others */ #define TRANS_KEEPFLAGS (TRANS_NOUNLINK|TRANS_ABSTRACT) +#ifdef __clang__ +/* Not all clients make use of all provided statics */ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunused-function" +#endif + /* * readv() and writev() don't exist or don't work correctly on some * systems, so they may be emulated. @@ -357,6 +363,10 @@ static int trans_mkdir ( ); #endif +#ifdef __clang__ +#pragma clang diagnostic pop +#endif + /* * Some XTRANSDEBUG stuff */ diff --git a/transport.c b/transport.c index 84a2915..0013b01 100644 --- a/transport.c +++ b/transport.c @@ -55,6 +55,12 @@ from The Open Group. #include "Xtransint.h" +#ifdef __clang__ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wformat-nonliteral" +#pragma clang diagnostic ignored "-Wdeprecated-declarations" +#endif + #ifdef LOCALCONN #include "Xtranslcl.c" #endif @@ -66,3 +72,7 @@ from The Open Group. #endif #include "Xtrans.c" #include "Xtransutil.c" + +#ifdef __clang__ +#pragma clang diagnostic pop +#endif |