Build and install the verify_krb5_conf(8) utility, which checks
krb5.conf(5) for obvious errors.
This commit is contained in:
parent
a46af1645f
commit
7a104fc51e
@ -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>
|
||||
|
26
kerberos5/usr.bin/verify_krb5_conf/Makefile
Normal file
26
kerberos5/usr.bin/verify_krb5_conf/Makefile
Normal 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
|
Loading…
Reference in New Issue
Block a user