blob: ab52f5bdbd4daca2ee681393ef162de24c1c3cd6 (
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
|
# $FreeBSD$
.PATH: ${.CURDIR}/../../rpc ${.CURDIR}/../../xdr
KMOD= krpc
SRCS= auth_none.c \
auth_unix.c \
authunix_prot.c \
clnt_dg.c \
clnt_rc.c \
clnt_vc.c \
getnetconfig.c \
inet_ntop.c \
inet_pton.c \
rpc_callmsg.c \
rpc_generic.c \
rpc_prot.c \
rpcb_clnt.c \
rpcb_prot.c \
replay.c \
svc.c \
svc_auth.c \
svc_auth_unix.c \
svc_dg.c \
svc_generic.c \
svc_vc.c \
SRCS+= xdr.c \
xdr_array.c \
xdr_mbuf.c \
xdr_mem.c \
xdr_reference.c \
xdr_sizeof.c
SRCS+= opt_inet6.h
.if !defined(KERNBUILDDIR)
NFS_INET6?= 1 # 0/1 - requires INET6 to be configured in kernel
.if ${NFS_INET6} > 0
opt_inet6.h:
echo "#define INET6 1" > ${.TARGET}
.endif
.endif
.include <bsd.kmod.mk>
|