From 5dc309a45b3f266afbe1b8ccc9a066b0f76650a3 Mon Sep 17 00:00:00 2001 From: Phil Pennock Date: Thu, 12 Jan 2017 23:37:50 -0500 Subject: [PATCH] Provide alternative Heimdal pkg-config example Building Exim against Heimdal 1.5, heimdal-gssapi.pc was needed. There's been a major version bump in Heimdal, and against 7.1 that doesn't work; using heimdal-krb5.pc fails on missing `gss_*` functions. I can find no build documentation for Heimdal which describes what should be needed. heimdal-gssapi.pc does reference heimdal-krb5.pc in `Requires.private` but it's not being used by FreeBSD pkgconf in such a way that it's available when building on FreeBSD 10.3. Fortunately, our `*_PC` logic works with multiple packages listed, so provide that example. --- src/src/EDITME | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/src/EDITME b/src/src/EDITME index 1bff9dab2..c8547cd4a 100644 --- a/src/src/EDITME +++ b/src/src/EDITME @@ -629,10 +629,14 @@ FIXED_NEVER_USERS=root # AUTH_GSASL_PC=libgsasl # AUTH_HEIMDAL_GSSAPI=yes # AUTH_HEIMDAL_GSSAPI_PC=heimdal-gssapi +# AUTH_HEIMDAL_GSSAPI_PC=heimdal-gssapi heimdal-krb5 # AUTH_PLAINTEXT=yes # AUTH_SPA=yes # AUTH_TLS=yes +# Heimdal through 1.5 required pkg-config 'heimdal-gssapi'; Heimdal 7.1 +# requires multiple pkg-config files to work with Exim, so the second example +# above is needed. #------------------------------------------------------------------------------ # If you specified AUTH_CYRUS_SASL above, you should ensure that you have the -- 2.25.1