diff options
author | Koop Mast <kwm@FreeBSD.org> | 2014-11-22 18:18:39 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2014-11-22 18:18:39 +0000 |
commit | f8633c44eca074950e13d04df2b0577c4965d9e5 (patch) | |
tree | 2b5fbbb269174cae65be8c53b14b8bc22ef61760 | |
parent | - Update to 2.8.5 and chase cad/opencascade. (diff) |
We currently only support kerberos from base. Make sure it disabled and
not accidently picked up by configure.
PR: 194760
Submitted by: Neel Chauhan <neel@neelc.org>
Notes
Notes:
svn path=/head/; revision=373083
-rw-r--r-- | databases/evolution-data-server/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/databases/evolution-data-server/Makefile b/databases/evolution-data-server/Makefile index cc01cee0a796..71384ec80bc4 100644 --- a/databases/evolution-data-server/Makefile +++ b/databases/evolution-data-server/Makefile @@ -56,9 +56,11 @@ WEATHER_DESC= Weather calendar backend .include <bsd.port.options.mk> -.if ${PORT_OPTIONS:MKERBEROS} +.if ${PORT_OPTIONS:MKERBEROS} && exists(/usr/bin/krb5-config) CONFIGURE_ARGS+= --with-krb5=/usr KRB5_LIB= `/usr/bin/krb5-config gssapi --libs` +.else +CONFIGURE_ARGS+= --without-krb5 .endif .if ${PORT_OPTIONS:MWEATHER} |