summaryrefslogtreecommitdiff
path: root/share/mk/bsd.own.mk
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-04-19 21:26:35 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-04-19 21:26:35 +0000
commit60f0cc8b06f6b2a732dba45282047230a78eab47 (patch)
tree095b6ccdab3a498288710207dff5b8c76acad921 /share/mk/bsd.own.mk
parent11de9e6ceccf61da35fe169021912e46267d7f74 (diff)
Changed ``defined(KERBEROS)'' to ``(${KERBEROS} == "yes")''
Same change doen for SKEY, YP, and KERBEROS5. This allows people to override those setting in /etc/mk.conf.
Diffstat (limited to 'share/mk/bsd.own.mk')
-rw-r--r--share/mk/bsd.own.mk21
1 files changed, 10 insertions, 11 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index 07bde2860a5..f744a7d1cfc 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,22 +1,21 @@
-# $OpenBSD: bsd.own.mk,v 1.14 1997/02/18 15:52:36 rahnds Exp $
+# $OpenBSD: bsd.own.mk,v 1.15 1997/04/19 21:26:08 millert Exp $
# $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $
+# Host-specific overrides
.if defined(MAKECONF) && exists(${MAKECONF})
.include "${MAKECONF}"
.elif exists(/etc/mk.conf)
.include "/etc/mk.conf"
.endif
-# Defining `SKEY' causes support for S/key authentication to be compiled in.
-SKEY= yes
-# Defining `KERBEROS' causes support for Kerberos authentication to be
-# compiled in.
-KERBEROS= yes
-# Defining 'KERBEROS5' causes support for Kerberos5 authentication to be
-# compiled in.
-#KERBEROS5= yes
-# Defining 'YP' causes support for NIS/YP to be compiled in
-YP= yes
+# Set `SKEY' to `yes' to build with support for S/key authentication.
+SKEY?= yes
+# Set `KERBEROS' to `yes' to build with support for Kerberos authentication.
+KERBEROS?= yes
+# Set `KERBEROS5' to `yes' to build with support for Kerberos5 authentication.
+KERBEROS5?= no
+# Set 'YP' to `yes' to build with causes support for NIS/YP.
+YP?= yes
# where the system object and source trees are kept; can be configurable
# by the user in case they want them in ~/foosrc and ~/fooobj, for example