zirias@
Developer
Hi all,
for my new system, I don't want to use openssl from base. I left it there because of all kinds of problems without it (starting with fetch being unable to fetch from https) but make sure it isn't used by ports and therefore also left out the heimdal kerberos.
Now trying to build www/chromium (with standard options, which includes kerberos) failed, missing a gssapi header. In order to fulfill all kerberos dependencies with MIT kerberos, I already have this in my make.conf:
Unfortunately, www/chromium only provides a simple KERBEROS option. It seems to work now with this:
It's still building but looks good so far. But I don't think this is a good solution. Probably, www/chromium should be extended to support the GSSAPI_* options. I'd like to give that a try, but have a question about it: On a system with the standard base, that includes kerberos, how would you prevent it from linking against it when GSSAPI_BASE is unset?
for my new system, I don't want to use openssl from base. I left it there because of all kinds of problems without it (starting with fetch being unable to fetch from https) but make sure it isn't used by ports and therefore also left out the heimdal kerberos.
Now trying to build www/chromium (with standard options, which includes kerberos) failed, missing a gssapi header. In order to fulfill all kerberos dependencies with MIT kerberos, I already have this in my make.conf:
Code:
OPTIONS_UNSET= GSSAPI_BASE
OPTIONS_SET= GSSAPI_MIT
Code:
.if ${.CURDIR:M*/www/chromium}
KERBEROS_LIB_DEPENDS= libgssapi_krb5.so:security/krb5
.endif