Commit 7ff44431 authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer
Browse files

- make it compile if LFS is turned off and add a warning to the help-text.

  LFS is _not_ turned on by this automagically _on_ _purpose_
parent fc613ea4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,8 @@ config BR2_PACKAGE_NFS_UTILS
	default n
	help
	  The NFS Linux kernel server.
	  Warning: We do not force largefile support on here on purpose.
	  Enable it yourself if you want to access big exports!

	  http://sourceforge.net/projects/nfs

+8 −1
Original line number Diff line number Diff line
@@ -11,6 +11,13 @@ NFS_UTILS_DIR:=$(BUILD_DIR)/nfs-utils-$(NFS_UTILS_VER)
NFS_UTILS_BINARY:=utils/nfsd/nfsd
NFS_UTILS_TARGET_BINARY:=usr/sbin/rpc.nfsd

BR2_NFS_UTILS_CFLAGS=
ifeq ($(BR2_LARGEFILE),)
BR2_NFS_UTILS_CFLAGS+=-U_LARGEFILE64_SOURCE -U_FILE_OFFSET_BITS
endif
BR2_NFS_UTILS_CFLAGS+=-DUTS_RELEASE='\"$(LINUX_HEADERS_VERSION)\"'


$(DL_DIR)/$(NFS_UTILS_SOURCE):
	 $(WGET) -P $(DL_DIR) $(NFS_UTILS_SITE)/$(NFS_UTILS_SOURCE)

@@ -25,7 +32,7 @@ $(NFS_UTILS_DIR)/.unpacked: $(DL_DIR)/$(NFS_UTILS_SOURCE)
$(NFS_UTILS_DIR)/.configured: $(NFS_UTILS_DIR)/.unpacked
	(cd $(NFS_UTILS_DIR); rm -rf config.cache; \
		$(TARGET_CONFIGURE_OPTS) \
		CFLAGS="$(TARGET_CFLAGS)" \
		CFLAGS="$(TARGET_CFLAGS) $(BR2_NFS_UTILS_CFLAGS)" \
		LDFLAGS="$(TARGET_LDFLAGS)" \
		knfsd_cv_bsd_signals=no \
		./configure \