Build and install the verify_krb5_conf(8) utility, which checks

krb5.conf(5) for obvious errors.
This commit is contained in:
Jacques Vidrine 2003-10-09 19:54:03 +00:00
parent 8fc52f5387
commit 54b2f6e334
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=120955
2 changed files with 28 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# $FreeBSD$
SUBDIR= kadmin kdestroy kinit klist kpasswd ksu krb5-config
SUBDIR= kadmin kdestroy kinit klist kpasswd ksu krb5-config \
verify_krb5_conf
.include <bsd.subdir.mk>

View File

@ -0,0 +1,26 @@
# $FreeBSD$
PROG= verify_krb5_conf
SRCS= verify_krb5_conf.c
CFLAGS+=-I${KRB5DIR}/include \
-I${KRB5DIR}/lib/roken \
-I${KRB5DIR}/lib/kafs \
-I${KRB5DIR}/lib/krb5 \
-I${KRB5DIR}/lib/asn1 \
-I${KRB5DIR}/kuser \
-I${ASN1OBJDIR} \
-I${.OBJDIR}
LDADD= -lkrb5 -lroken -lkafs5 ${LIBVERS} \
-lasn1 -lcrypto -lcrypt -lcom_err
DPADD= ${LIBKRB5} ${LIBROKEN} ${LIBKAFS5} ${LIBVERS} \
${LIBASN1} ${LIBCRYPTO} ${LIBCRYPT} ${LIBCOM_ERR}
MAN= verify_krb5_conf.8
.include <bsd.prog.mk>
.PATH: ${KRB5DIR}/lib/krb5