diff options
author | cjep <cjep@pkgsrc.org> | 2002-06-15 21:19:59 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2002-06-15 21:19:59 +0000 |
commit | 64c9e8a407f30ababa7be4bdb08c71b511efae6e (patch) | |
tree | 7d99907ae17b786ff881cac93a85ef0580acf515 /security/ssh | |
parent | 4b3727b76680e13c0c8a9597d7cfc25abbd72788 (diff) | |
download | pkgsrc-64c9e8a407f30ababa7be4bdb08c71b511efae6e.tar.gz |
Change USE_KERBEROS to PKG_USE_KERBEROS in pkgsrc. There was a "conflict"
which the basesrc USE_KERBEROS variable. Discussed on packages@
This fixes PR#17182 from Takahiro Kambe. The problem was pointed out by
FUKAUMI Naoki on a Japanese NetBSD mailing list.
Diffstat (limited to 'security/ssh')
-rw-r--r-- | security/ssh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index ad20d09d805..610342c6333 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.98 2002/02/05 04:26:56 jlam Exp $ +# $NetBSD: Makefile,v 1.99 2002/06/15 21:20:04 cjep Exp $ # FreeBSD Id: Makefile,v 1.47 1997/11/10 22:04:42 dima Exp # @@ -104,13 +104,13 @@ DEPENDS+= socks5-1.0.2:../../net/socks5 # MD5 (ssh-1.2.27-afs-kerberos.patch-1) = d440f74958d9c3805b76dbc13e97e87d .if defined(KERBEROS) -USE_KERBEROS= yes +PKG_USE_KERBEROS= yes CONFIGURE_ARGS+= --with-krb4=/usr .endif # XXX KERBEROS 5 SUPPORT BROKEN WITH HEIMDAL #.if defined(KERBEROS) && ${KERBEROS} == 5 -#USE_KERBEROS= yes +#PKG_USE_KERBEROS= yes #CONFIGURE_ARGS+=--with-krb5=/usr #.else #CONFIGURE_ARGS+=--without-krb5 |