summaryrefslogtreecommitdiffstats
path: root/rules/host-nfsutils.make
blob: bfbe6dac33d7059638fa99bb6797a86d03ce59df (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
# -*-makefile-*-
#
# Copyright (C) 2020 by Bastian Krause <bst@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_NFSUTILS) += host-nfsutils

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# autoconf
#
HOST_NFSUTILS_CONF_TOOL	:= autoconf

HOST_NFSUTILS_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--disable-nfsv4 \
	--disable-nfsv41 \
	--disable-gss \
	--disable-svcgss \
	--disable-kprefix \
	--disable-uuid \
	--disable-mount \
	--disable-libmount-mount \
	--disable-junction \
	--disable-tirpc \
	--disable-ipv6 \
	--disable-mountconfig \
	--disable-nfsdcld \
	--disable-nfsdcltrack \
	--disable-nfsv4server \
	--disable-caps \
	$(GLOBAL_LARGE_FILE_OPTION) \
	--disable-ldap \
	--disable-gums \
	--without-systemd \
	--with-rpcgen=internal \
	--without-mountfile \
	--without-tcp-wrappers \
	--without-krb5 \
	--without-gssglue

HOST_NFSUTILS_MAKE_OPT		:= \
	-C tools/rpcgen

HOST_NFSUTILS_INSTALL_OPT	:= \
	$(HOST_NFSUTILS_MAKE_OPT) \
	install

# vim: syntax=make