Fix build when MAKE_KERBEROS4 is not requested. This was broken with

the last Heimdal import.

Reported by:	jhay, roam
(both the same day!)
This commit is contained in:
Jacques Vidrine 2002-02-21 15:54:20 +00:00
parent 5439c489f8
commit c2541847fd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91020

View File

@ -2,17 +2,13 @@
PROG= kdc
SRCS= \
524.c \
config.c \
connect.c \
kaserver.c \
kdc_locl.h \
kerberos4.c \
kerberos5.c \
log.c \
main.c \
misc.c \
rx.h
misc.c
CFLAGS+= -I${KRB5DIR}/include \
-I${KRB5DIR}/kdc \
@ -26,6 +22,7 @@ CFLAGS+= -I${KRB5DIR}/include \
-I${.OBJDIR}
.if defined(MAKE_KERBEROS4) && \
(${MAKE_KERBEROS4} == "YES" || ${MAKE_KERBEROS4} == "yes")
SRCS+= 524.c kerberos4.c kaserver.c rx.h
_krb4libs= -lkrb -lkafs
_krb4deps= ${LIBKRB} ${LIBKAFS}
.endif