svn commit: r373083 - head/databases/evolution-data-server

Koop Mast kwm at FreeBSD.org
Sat Nov 22 18:18:39 UTC 2014


Author: kwm
Date: Sat Nov 22 18:18:39 2014
New Revision: 373083
URL: https://svnweb.freebsd.org/changeset/ports/373083
QAT: https://qat.redports.org/buildarchive/r373083/

Log:
  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 at neelc.org>

Modified:
  head/databases/evolution-data-server/Makefile

Modified: head/databases/evolution-data-server/Makefile
==============================================================================
--- head/databases/evolution-data-server/Makefile	Sat Nov 22 17:46:21 2014	(r373082)
+++ head/databases/evolution-data-server/Makefile	Sat Nov 22 18:18:39 2014	(r373083)
@@ -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}


More information about the svn-ports-all mailing list