diff options
| author | Kevin Koch <kpkoch@mit.edu> | 2007-11-20 16:46:22 +0000 |
|---|---|---|
| committer | Kevin Koch <kpkoch@mit.edu> | 2007-11-20 16:46:22 +0000 |
| commit | ab8eafcf0c5139df878d29d5c717eaaae6761156 (patch) | |
| tree | 114894e26b2ab70ae7541ed686d5f38baf1361ba /src/ccapi | |
| parent | f5dcf270b3ff6aa1f1b49962e450e3fc5e05a411 (diff) | |
| download | krb5-ab8eafcf0c5139df878d29d5c717eaaae6761156.tar.gz krb5-ab8eafcf0c5139df878d29d5c717eaaae6761156.tar.xz krb5-ab8eafcf0c5139df878d29d5c717eaaae6761156.zip | |
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
Diffstat (limited to 'src/ccapi')
| -rw-r--r-- | src/ccapi/common/cci_cred_union.c | 4 | ||||
| -rw-r--r-- | src/ccapi/common/cci_stream.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ccapi/common/cci_cred_union.c b/src/ccapi/common/cci_cred_union.c index 74a87a6868..f0dbc1f008 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 8c0ef3356e..f8438e5499 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 |
