From ab8eafcf0c5139df878d29d5c717eaaae6761156 Mon Sep 17 00:00:00 2001 From: Kevin Koch Date: Tue, 20 Nov 2007 16:46:22 +0000 Subject: [PATCH] Disable warnings about #pragma mark TargetVersion: 1.7 Component: krb5-libs Ticket: 5594 Subj: Tweaks for 1.7 build on Windows. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20167 dc483132-0cff-0310-8789-dd5450dbe970 --- src/ccapi/common/cci_cred_union.c | 4 ++++ src/ccapi/common/cci_stream.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/ccapi/common/cci_cred_union.c b/src/ccapi/common/cci_cred_union.c index 74a87a686..f0dbc1f00 100644 --- a/src/ccapi/common/cci_cred_union.c +++ b/src/ccapi/common/cci_cred_union.c @@ -26,6 +26,10 @@ #include "cci_common.h" +#ifdef WIN32 +#pragma warning ( disable : 4068) +#endif + #pragma mark - /* ------------------------------------------------------------------------ */ diff --git a/src/ccapi/common/cci_stream.c b/src/ccapi/common/cci_stream.c index 8c0ef3356..f8438e549 100644 --- a/src/ccapi/common/cci_stream.c +++ b/src/ccapi/common/cci_stream.c @@ -27,6 +27,10 @@ #include "cci_common.h" #include "k5-platform.h" /* for byte swapping */ +#ifdef WIN32 +#pragma warning ( disable : 4068) +#endif + #if !defined(htonll) #define htonll(x) k5_htonll(x) #endif -- 2.26.2