diff options
author | tv <tv@pkgsrc.org> | 1999-05-03 23:39:22 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1999-05-03 23:39:22 +0000 |
commit | f537c05412dd6a2f2ec6eb18def0eb9bdf9b7f1a (patch) | |
tree | 1251df59cb4169944e1988ed405807e65b9b57b5 /mail/fetchmail/Makefile | |
parent | a8a6ba3ad51193e9b17d97a999829eb6b51727f6 (diff) | |
download | pkgsrc-f537c05412dd6a2f2ec6eb18def0eb9bdf9b7f1a.tar.gz |
Make the Kerberos option uniform - it is now USE_KERBEROS4 and specifies
use of krb4 _or_ a compatible subsystem. (MAKE_ was only used by this
option; USE_ is used by many.)
Also set RESTRICTED= in all relevant pkgs when USE_KERBEROS4 is enabled.
Diffstat (limited to 'mail/fetchmail/Makefile')
-rw-r--r-- | mail/fetchmail/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index 741022f91ae..cf285c5d4f6 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 1999/05/03 11:54:20 frueauf Exp $ +# $NetBSD: Makefile,v 1.43 1999/05/03 23:39:22 tv Exp $ # DISTNAME= fetchmail-5.0.3 @@ -17,8 +17,9 @@ CONFIGURE_ENV= LDFLAGS="${CFLAGS}" .include "../../mk/bsd.prefs.mk" -.if exists(/usr/lib/libkrb.a) && (defined(MAKE_EBONES) || defined(MAKE_KERBEROS4)) -CONFIGURE_ARGS += --with-kerberos=yes +.if defined(USE_KERBEROS4) +CONFIGURE_ARGS+=--with-kerberos=yes +RESTRICTED= uses Kerberos encryption code .endif FDOC= ${PREFIX}/share/doc/fetchmail |