diff options
author | kim <kim@pkgsrc.org> | 1999-09-13 13:24:48 +0000 |
---|---|---|
committer | kim <kim@pkgsrc.org> | 1999-09-13 13:24:48 +0000 |
commit | 02bd4492fd0b15d8df430801d22c7ee8e19ee89a (patch) | |
tree | 29acc7e825b0020879a0734efd78877368a50b10 /security | |
parent | a40be5c1a995625cb018adb864ddc6ecf7925e97 (diff) | |
download | pkgsrc-02bd4492fd0b15d8df430801d22c7ee8e19ee89a.tar.gz |
Add Kerberos V support, record Kerberos options.
Diffstat (limited to 'security')
-rw-r--r-- | security/sudo/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/security/sudo/Makefile b/security/sudo/Makefile index e96220b27de..ecf6f489c05 100644 --- a/security/sudo/Makefile +++ b/security/sudo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 1999/09/13 13:17:40 kim Exp $ +# $NetBSD: Makefile,v 1.16 1999/09/13 13:24:48 kim Exp $ # FreeBSD Id: Makefile,v 1.9 1997/11/12 03:24:41 obrien Exp # @@ -15,6 +15,8 @@ BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf .include "../../mk/bsd.prefs.mk" +BUILD_DEFS+= USE_KERBEROS4 USE_KERBEROS5 + GNU_CONFIGURE= yes .if ${OPSYS} == "NetBSD" @@ -27,6 +29,10 @@ CONFIGURE_ARGS+=--without-skey CONFIGURE_ARGS+=--with-kerb4 .endif +.ifdef ${USE_KERBEROS5} +CONFIGURE_ARGS+=--with-kerb5 +.endif + CONFIGURE_ARGS+=--with-C2 --with-nbsdops --disable-path-info pre-configure: |