Disable warnings about #pragma mark
authorKevin Koch <kpkoch@mit.edu>
Tue, 20 Nov 2007 16:46:22 +0000 (16:46 +0000)
committerKevin Koch <kpkoch@mit.edu>
Tue, 20 Nov 2007 16:46:22 +0000 (16:46 +0000)
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
src/ccapi/common/cci_stream.c

index 74a87a68681cd12b937c8f33e22b2b69d1517b98..f0dbc1f0081a916a07cfa1359fb836c16575b20c 100644 (file)
 
 #include "cci_common.h"
 
+#ifdef WIN32
+#pragma warning ( disable : 4068)
+#endif
+
 #pragma mark - 
 
 /* ------------------------------------------------------------------------ */
index 8c0ef3356e325d13ffe08ce2a57d955b51104f5a..f8438e54991d4b2002322d1db069c57d8e177a76 100644 (file)
 #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