diff options
author | marcus <marcus@FreeBSD.org> | 2004-11-13 00:49:30 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-11-13 00:49:30 +0800 |
commit | 0f166be98a8194a590cb46191fcf018250265413 (patch) | |
tree | fa6df430917c4974c83356861d09a401c7bb22dd /mail/evolution-exchange/Makefile | |
parent | 96bff4cb81a790e5513a0b3d14d686e172f7b29d (diff) | |
download | freebsd-ports-gnome-0f166be98a8194a590cb46191fcf018250265413.tar.gz freebsd-ports-gnome-0f166be98a8194a590cb46191fcf018250265413.tar.zst freebsd-ports-gnome-0f166be98a8194a590cb46191fcf018250265413.zip |
The 4.X base system version of Kerberos is not supported, and does not
work with ximian-connector, so use security/heimdal even if Kerberos
is in the base system on 4.X.
PR: 73845
Submitted by: Joe Kelsey <joe@zircon.seattle.wa.us>
Diffstat (limited to 'mail/evolution-exchange/Makefile')
-rw-r--r-- | mail/evolution-exchange/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/mail/evolution-exchange/Makefile b/mail/evolution-exchange/Makefile index 5ab39285bf6c..c0c5b1c14c97 100644 --- a/mail/evolution-exchange/Makefile +++ b/mail/evolution-exchange/Makefile @@ -36,14 +36,7 @@ PLIST_SUB= VERSION="2.0" EVO_VERSION=${EVO_VERSION} .include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 && defined(MAKE_KERBEROS5) && \ - exists(/usr/lib/libkrb5.so) && !defined(PACKAGE_BUILDING) -CONFIGURE_ARGS+= --with-krb5=/usr -.elif ( ${OSVERSION} < 500000 && !defined(MAKE_KERBEROS5) ) || \ - defined(PACKAGE_BUILDING) -LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal -CONFIGURE_ARGS+= --with-krb5=${LOCALBASE} -.elif ${OSVERSION} >= 500000 && !defined(NO_KERBEROS) && \ +.if ${OSVERSION} >= 500000 && !defined(NO_KERBEROS) && \ exists(/usr/lib/libkrb5.so) CONFIGURE_ARGS+= --with-krb5=/usr .else |