blob: 6fe49c13b0f0af7aeee71f43d1b27d00e8a50abb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
# $NetBSD: Makefile,v 1.6 2000/06/20 21:49:03 thorpej Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/krb4/lib/krb
.PATH: ${DIST}/krb4/doc
.PATH: ${DIST}/openssl/crypto/des
WARNS?= 1
MKLINT= no
LIB= krb
COMPILEET!= cd ${.CURDIR}/../libcom_err/compile_et && make print-objdir
krb_err.c krb_err.h: krb_err.et
${COMPILEET}/compile_et ${DIST}/krb4/lib/krb/krb_err.et
ERR_FILES= krb_err.c
DPSRCS= krb_err.h
SRCS= \
check_time.c \
cr_err_reply.c \
create_auth_reply.c \
create_ciph.c \
create_death_packet.c \
create_ticket.c \
debug_decl.c \
decomp_ticket.c \
defaults.c \
dest_tkt.c \
encrypt_ktext.c \
extra.c \
get_ad_tkt.c \
getfile.c \
get_cred.c \
get_default_principal.c \
get_host.c \
get_in_tkt.c \
get_krbrlm.c \
get_svc_in_tkt.c \
get_tf_fullname.c \
get_tf_realm.c \
getaddrs.c \
getrealm.c \
getst.c \
k_getport.c \
k_getsockinst.c \
k_localtime.c \
kdc_reply.c \
kntoln.c \
krb_check_auth.c \
krb_equiv.c \
krb_err.c \
krb_err_txt.c \
krb_get_in_tkt.c \
kuserok.c \
lifetime.c \
logging.c \
lsb_addr_comp.c \
mk_auth.c \
mk_err.c \
mk_priv.c \
mk_req.c \
mk_safe.c \
month_sname.c \
name2name.c \
krb_net_read.c \
krb_net_write.c \
one.c \
parse_name.c \
rd_err.c \
rd_priv.c \
rd_req.c \
rd_safe.c \
read_service_key.c \
realm_parse.c \
recvauth.c \
rw.c \
save_credentials.c \
send_to_kdc.c \
sendauth.c \
solaris_compat.c \
stime.c \
str2key.c \
tf_util.c \
time.c \
tkt_string.c \
unparse_name.c \
verify_user.c \
krb_ip_realm.c
INCSDIR= /usr/include/kerberosIV
INCS= krb.h \
krb_err.h \
ktypes.h \
klog.h \
krb-protos.h \
krb-archaeology.h \
prot.h \
des.h
CPPFLAGS+= -I. \
-I${DIST}/krb4/lib/krb \
-I${DIST}/openssl/crypto/des \
-I${DIST}/heimdal/lib/com_err \
-I${.CURDIR}/../../include/heimdal \
-I${.CURDIR}/../libroken \
-I${DIST}/heimdal/lib/roken \
-DHAVE_CONFIG_H
CLEANFILES = $(ERR_FILES) krb_err.h ktypes.h
ktypes.h:
cp ${.CURDIR}/../../include/heimdal/$@ $@
$(SRCS:.c=.o): krb_err.h
TEXINFO= kth-krb.texi
INFOFLAGS= -I${DIST}/krb4/doc
# Prevent collisions with old MIT Kerberos includes -- require manual
# intervention of the operator.
.BEGIN:
.ifmake includes
@if [ -f ${DESTDIR}${INCSDIR}/mit-copyright.h ]; then \
echo "Error: you must first remove the MIT headers from ${DESTDIR}${INCSDIR}" >&2; \
false; \
fi
.endif
.include <bsd.lib.mk>
.include <bsd.info.mk>
|