Stop eating all process memory if either of ${.CURDIR}/../kerberosIV

or ${.CURDIR}/../kerberos5 does not exist.

Spotted by:	Alexandr Listopad <laa@reis.zp.ua>
MFC after:	3 days
This commit is contained in:
ru 2002-08-05 16:57:43 +00:00
parent 18a6d11c31
commit 61e34cfa22

View File

@ -194,8 +194,12 @@ BIGBOOTLABEL= minimum2
ZIPNSPLIT= gzip --no-name -9 -c | split -b 240640 -
# Things that need to be recompiled with Kerberos support.
.if exists(${.CURDIR}/../kerberosIV) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
K4PROGS!= cd ${.CURDIR}/../kerberosIV; ${MAKE} -V KPROGS
.endif
.if exists(${.CURDIR}/../kerberos5) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
K5PROGS!= cd ${.CURDIR}/../kerberos5; ${MAKE} -V KPROGS
.endif
# Things that need to be compiled without crypto support in releases
.if !defined(FIXCRYPTO)