diff options
| author | Kevin Koch <kpkoch@mit.edu> | 2007-06-05 20:22:37 +0000 |
|---|---|---|
| committer | Kevin Koch <kpkoch@mit.edu> | 2007-06-05 20:22:37 +0000 |
| commit | d439fa96b8c8b72eba8cb4e258ede4a32e8999f5 (patch) | |
| tree | f552e9efa4d550c802c8e96437ff3b9b6324f9e2 /src/include | |
| parent | ed77e3e36380daedadf33c4c622927143f97cf74 (diff) | |
| download | krb5-d439fa96b8c8b72eba8cb4e258ede4a32e8999f5.tar.gz krb5-d439fa96b8c8b72eba8cb4e258ede4a32e8999f5.tar.xz krb5-d439fa96b8c8b72eba8cb4e258ede4a32e8999f5.zip | |
The #if _WIN32 block threw an error with Visual Studio 2005. Bumped the _MSC_VER threshold by 100
TargetVersion: 1.7
Component: krb5-libs
Ticket: new
Subj: Tweaks for 1.7 build on Windows.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19569 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/CredentialsCache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/CredentialsCache.h b/src/include/CredentialsCache.h index 51242bbef..c2e472038 100644 --- a/src/include/CredentialsCache.h +++ b/src/include/CredentialsCache.h @@ -48,7 +48,7 @@ extern "C" { #if defined(_WIN32) #define CCACHE_API __declspec(dllexport) -#if _INTEGRAL_MAX_BITS >= 64 && _MSC_VER >= 1400 && !defined(_WIN64) && !defined(_USE_32BIT_TIME_T) +#if _INTEGRAL_MAX_BITS >= 64 && _MSC_VER >= 1500 && !defined(_WIN64) && !defined(_USE_32BIT_TIME_T) #if defined(_TIME_T_DEFINED) || defined(_INC_IO) || defined(_INC_TIME) || defined(_INC_WCHAR) #error time_t has been defined as a 64-bit integer which is incompatible with Kerberos on this platform. #endif /* _TIME_T_DEFINED */ |
