diff options
author | Denys Vlasenko | 2018-02-13 18:20:28 +0100 |
---|---|---|
committer | Denys Vlasenko | 2018-02-13 18:20:28 +0100 |
commit | 4892f3a4c77fb5051d64cfc5f9056a7d6ec6cdb2 (patch) | |
tree | 20585496bc3e661bad14808a404dc283b09c40f0 | |
parent | edccc982e515e63a080a75fb49fd08b946f62cc6 (diff) | |
download | busybox-4892f3a4c77fb5051d64cfc5f9056a7d6ec6cdb2.zip busybox-4892f3a4c77fb5051d64cfc5f9056a7d6ec6cdb2.tar.gz |
inetd,mount: add comment with example of flags to build with libtirpc
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/inetd.c | 6 | ||||
-rw-r--r-- | util-linux/mount.c | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/networking/inetd.c b/networking/inetd.c index 6843845..ca1a972 100644 --- a/networking/inetd.c +++ b/networking/inetd.c @@ -246,7 +246,11 @@ #if ENABLE_FEATURE_INETD_RPC # if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__) # warning "You probably need to build uClibc with UCLIBC_HAS_RPC for NFS support" - /* not #error, since user may be using e.g. libtirpc instead */ + /* not #error, since user may be using e.g. libtirpc instead. + * This might work: + * CONFIG_EXTRA_CFLAGS="-I/usr/include/tirpc" + * CONFIG_EXTRA_LDLIBS="tirpc" + */ # endif # include <rpc/rpc.h> # include <rpc/pmap_clnt.h> diff --git a/util-linux/mount.c b/util-linux/mount.c index 4eade08..fa2e7b1 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -244,7 +244,11 @@ * uclibc faq entry rather than in busybox... */ # if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__) # warning "You probably need to build uClibc with UCLIBC_HAS_RPC for NFS support" - /* not #error, since user may be using e.g. libtirpc instead */ + /* not #error, since user may be using e.g. libtirpc instead. + * This might work: + * CONFIG_EXTRA_CFLAGS="-I/usr/include/tirpc" + * CONFIG_EXTRA_LDLIBS="tirpc" + */ # endif # include <rpc/rpc.h> # include <rpc/pmap_prot.h> |