diff options
author | nectar <nectar@FreeBSD.org> | 2002-02-21 15:54:20 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2002-02-21 15:54:20 +0000 |
commit | 85e421e953092eb4e966617c081b69a01a858589 (patch) | |
tree | 746d0882162ba4f08b1f77dfcc4771445fa2b738 /kerberos5/libexec | |
parent | f8646944152674ae29799337cf8652dc6a1d46e9 (diff) | |
download | FreeBSD-src-85e421e953092eb4e966617c081b69a01a858589.zip FreeBSD-src-85e421e953092eb4e966617c081b69a01a858589.tar.gz |
Fix build when MAKE_KERBEROS4 is not requested. This was broken with
the last Heimdal import.
Reported by: jhay, roam
(both the same day!)
Diffstat (limited to 'kerberos5/libexec')
-rw-r--r-- | kerberos5/libexec/kdc/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/kerberos5/libexec/kdc/Makefile b/kerberos5/libexec/kdc/Makefile index 3ebdbca..001d77a 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 |