Skip redundant inclusion of iprop.h
authorKen Raeburn <raeburn@mit.edu>
Sun, 4 Sep 2011 23:52:21 +0000 (23:52 +0000)
committerKen Raeburn <raeburn@mit.edu>
Sun, 4 Sep 2011 23:52:21 +0000 (23:52 +0000)
Suppress GCC's unused-variable diagnostic for purely generated code
using outside tools, known to have that issue but not ours to fix.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25142 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/kdb/iprop.x
src/lib/kdb/iprop_xdr.c

index 82ffdfe0598ae9732e3a33399dd28d77fe03ced5..b04a453ed8be97269a6094d1e897d1687a1c5932 100644 (file)
  * kadmin/server/ipropd_svc.c
  */
 
+/*
+ * This file gets fed through the preprocessor to handle RPC_*
+ * symbols, but we don't want it to chew on __GNUC__ in this phase.
+ */
+#undef __GNUC__
+
 #ifdef RPC_XDR
-%#include "iprop.h"
+/*
+ * Sloppy rpcgen code declares "buf" and rarely uses it.  As it's
+ * generated code, and not presented to code building against the
+ * Kerberos code, it's not a problem we need to fix, so suppress the
+ * complaint.
+ */
+%#ifdef __GNUC__
+%#pragma GCC diagnostic ignored "-Wunused-variable"
+%#endif
 #endif /* RPC_XDR */
 
 /*
index 093c056760b29c5d10c9a061389ef2ac6c944b71..2ab59f5707fab0d98e243d66f6585cc8cefa308b 100644 (file)
@@ -5,7 +5,9 @@
  */
 
 #include "iprop.h"
-#include "iprop.h"
+#ifdef __GNUC__
+#pragma GCC diagnostic ignored "-Wunused-variable"
+#endif
 
 bool_t
 xdr_int16_t (XDR *xdrs, int16_t *objp)