From 0a564940c04dd9500b8d72bae723b165c3690b26 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Tue, 13 Nov 2012 21:21:38 +0100 Subject: Always start PAC responder if IPA ID provider is configured Since the PAC responder is used during the authentication of users from trusted realms it is started automatically if the IPA ID provider is configured for a domain to simplify the configuration. Fixes https://fedorahosted.org/sssd/ticket/1613 --- src/util/util.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/util/util.h') diff --git a/src/util/util.h b/src/util/util.h index 53f5954ee..9e55e5065 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -583,4 +583,10 @@ errno_t sss_br_lock_file(int fd, size_t start, size_t len, #endif /* le32toh */ +#ifdef HAVE_PAC_RESPONDER +#define BUILD_WITH_PAC_RESPONDER true +#else +#define BUILD_WITH_PAC_RESPONDER false +#endif + #endif /* __SSSD_UTIL_H__ */ -- cgit