From 69d4743dc83a2050e4e2c2fd60929abccfef498b Mon Sep 17 00:00:00 2001 From: Kevin Wasserman Date: Thu, 16 Aug 2012 11:10:06 -0400 Subject: Add version info for ccapi dll Without version info, this library would not get installed during an upgrade scenario, causing the MIT Kerberos application to crash on startup. Signed-off-by: Kevin Wasserman [kaduk@mit.edu: add motivation to commit message] ticket: 7336 (new) subject: Fix KfW crash on startup after upgrade queue: kfw target_version: 1.10.4 tags: pullup --- src/windows/version.rc | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/windows/version.rc') diff --git a/src/windows/version.rc b/src/windows/version.rc index b23eec1129..810d800f69 100644 --- a/src/windows/version.rc +++ b/src/windows/version.rc @@ -108,6 +108,17 @@ #endif #endif /* GSSAPI */ +#ifdef CCAPI_LIB +#define K5_DESCRIPTION "Kerberos Credentials Cache DLL\0" +#define K5_INTERNAL_NAME "krbcc\0" +#define K5_FILETYPE VFT_DLL +#if defined(_WIN64) +#define K5_ORIGINAL_NAME "krbcc64.dll\0" +#else +#define K5_ORIGINAL_NAME "krbcc32.dll\0" +#endif +#endif /* CCAPI_LIB */ + #ifdef LEASH_APP #define K5_DESCRIPTION "MIT Kerberos Ticket Manager - " KRB5_PRODUCTNAME_STR "\0" #define K5_FILETYPE VFT_APP -- cgit