summaryrefslogtreecommitdiffstats
path: root/src/ccapi/test/test_ccapi_globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ccapi/test/test_ccapi_globals.h')
-rw-r--r--src/ccapi/test/test_ccapi_globals.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ccapi/test/test_ccapi_globals.h b/src/ccapi/test/test_ccapi_globals.h
index eba364a99b..a5c165df2e 100644
--- a/src/ccapi/test/test_ccapi_globals.h
+++ b/src/ccapi/test/test_ccapi_globals.h
@@ -1,7 +1,13 @@
#ifndef _TEST_CCAPI_GLOBALS_H_
#define _TEST_CCAPI_GLOBALS_H_
-#include "CredentialsCache.h"
+#include <krb5.h> // gets us TARGET_OS_MAC
+
+#ifdef TARGET_OS_MAC
+#include <Kerberos/CredentialsCache.h>
+#else
+#include <CredentialsCache.h>
+#endif
/* GLOBALS */
extern unsigned int total_failure_count;