- 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_
This commit is contained in:
Bernhard Reutner-Fischer 2007-01-22 15:56:42 +00:00
parent fc613ea410
commit 7ff4443181
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -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 \