873040371b
uClibc-ng removed internal RPC implementation as it is ipv4 only and can not be used for most important RPC software rpcbind and nfs-utils. musl does not implement RPC and GNU C library deprecated the internal implementation a while ago. It is still possible to use the C library implementation. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> [Thomas: change to use libtirpc when available, not just when the toolchain does not have RPC support.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# autofs
|
|
#
|
|
################################################################################
|
|
|
|
AUTOFS_VERSION = 5.1.4
|
|
AUTOFS_SOURCE = autofs-$(AUTOFS_VERSION).tar.xz
|
|
AUTOFS_SITE = $(BR2_KERNEL_MIRROR)/linux/daemons/autofs/v5
|
|
AUTOFS_LICENSE = GPL-2.0+
|
|
AUTOFS_LICENSE_FILES = COPYING COPYRIGHT
|
|
AUTOFS_DEPENDENCIES = host-flex host-bison host-pkgconf
|
|
|
|
# autofs looks on the build machine for the path of modprobe, so tell
|
|
# it explicitly where it will be located on the target.
|
|
AUTOFS_CONF_ENV = \
|
|
ac_cv_path_KRB5_CONFIG=no \
|
|
ac_cv_path_MODPROBE=/sbin/modprobe \
|
|
ac_cv_linux_procfs=yes
|
|
|
|
# instead of looking in the PATH like any reasonable package, autofs
|
|
# configure looks only in an hardcoded search path for host tools,
|
|
# which we have to override with --with-path.
|
|
AUTOFS_CONF_OPTS = \
|
|
--disable-mount-locking \
|
|
--enable-ignore-busy \
|
|
--without-openldap \
|
|
--without-sasl \
|
|
--with-path="$(BR_PATH)" \
|
|
--with-hesiod=no
|
|
|
|
AUTOFS_MAKE_ENV = DONTSTRIP=1
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
|
|
AUTOFS_CONF_OPTS += --with-libtirpc
|
|
AUTOFS_DEPENDENCIES += libtirpc
|
|
else
|
|
AUTOFS_CONF_OPTS += --without-libtirpc
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|