diff options
author | thorpej <thorpej> | 2000-02-28 01:55:26 +0000 |
---|---|---|
committer | thorpej <thorpej> | 2000-02-28 01:55:26 +0000 |
commit | eb26f3c8e6787da383c9a3c71bae5bb5b25a2fd6 (patch) | |
tree | 2d93d763ba7314849eaaf881c5f1c303bf1f321c /security/sudo/Makefile | |
parent | 65fce385aebf047b0be0d375a592009a1ec58b48 (diff) | |
download | pkgsrc-eb26f3c8e6787da383c9a3c71bae5bb5b25a2fd6.tar.gz |
Only enable Kerberos 5 support if USE_HEIMDAL is set; sudo uses API
features present in Heimdal but NOT present in MIT Kerberos (one more
reason to ditch MIT, I guess).
Diffstat (limited to 'security/sudo/Makefile')
-rw-r--r-- | security/sudo/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/sudo/Makefile b/security/sudo/Makefile index 3e555452a91..1860a5572b9 100644 --- a/security/sudo/Makefile +++ b/security/sudo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2000/01/28 17:01:46 jlam Exp $ +# $NetBSD: Makefile,v 1.22 2000/02/28 01:55:26 thorpej Exp $ # FreeBSD Id: Makefile,v 1.9 1997/11/12 03:24:41 obrien Exp # @@ -32,12 +32,15 @@ CONFIGURE_ARGS+=--with-kerb4 CONFIGURE_ARGS+=--without-kerb4 .endif +# XXX Currently uses API features present only in Heimdal. +.if defined(USE_HEIMDAL) .if defined(KERBEROS) && ${KERBEROS} == 5 USE_KERBEROS= yes CONFIGURE_ARGS+=--with-kerb5 .else CONFIGURE_ARGS+=--without-kerb5 .endif +.endif CONFIGURE_ARGS+=--with-nbsdops --disable-path-info |