mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-27 04:20:38 -09:00
Change log: https://github.com/sahlberg/libnfs/compare/libnfs-6.0.2...libnfs-7.0.1 All patches are dropped as they are all included in 7.0.1. Signed-off-by: Andreas Ziegler <br025@umbiko.net> [Thomas: bump to 7.0.1] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Tested-by: Andreas Ziegler <br025@umbiko.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
37 lines
979 B
Makefile
37 lines
979 B
Makefile
################################################################################
|
|
#
|
|
# libnfs
|
|
#
|
|
################################################################################
|
|
|
|
LIBNFS_VERSION = 7.0.1
|
|
LIBNFS_SITE = $(call github,sahlberg,libnfs,libnfs-$(LIBNFS_VERSION))
|
|
LIBNFS_INSTALL_STAGING = YES
|
|
LIBNFS_AUTORECONF = YES
|
|
LIBNFS_LICENSE = LGPL-2.1+ (library), BSD-2-Clause (protocol, .x files), GPL-3.0+ (examples)
|
|
LIBNFS_LICENSE_FILES = COPYING LICENCE-BSD.txt LICENCE-LGPL-2.1.txt LICENCE-GPL-3.txt
|
|
LIBNFS_DEPENDENCIES = host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
LIBNFS_DEPENDENCIES += gnutls
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBKRB5),y)
|
|
LIBNFS_CONF_OPTS += --with-libkrb5
|
|
LIBNFS_DEPENDENCIES += libkrb5
|
|
else
|
|
LIBNFS_CONF_OPTS += --without-libkrb5
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
|
|
LIBNFS_DEPENDENCIES += libtirpc
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
LIBNFS_CONF_OPTS += --enable-pthread
|
|
else
|
|
LIBNFS_CONF_OPTS += --disable-pthread
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|