From c2541847fd620b258aecec3bdea818281bbcff7e Mon Sep 17 00:00:00 2001 From: Jacques Vidrine Date: Thu, 21 Feb 2002 15:54:20 +0000 Subject: [PATCH] Fix build when MAKE_KERBEROS4 is not requested. This was broken with the last Heimdal import. Reported by: jhay, roam (both the same day!) --- kerberos5/libexec/kdc/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/kerberos5/libexec/kdc/Makefile b/kerberos5/libexec/kdc/Makefile index 3ebdbca6e54a..001d77aaad5e 100644 --- a/kerberos5/libexec/kdc/Makefile +++ b/kerberos5/libexec/kdc/Makefile @@ -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