diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-10 14:43:22 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-10 14:43:22 +0200 |
commit | ce55284ed6f5b5303d9e45d034287c728ef9b05a (patch) | |
tree | 4b52c7e0e6dbafd5cbad502e13dd205e7ed91524 /networking | |
parent | b057806a6ad7618b10db062bf6c71d09f71ce421 (diff) | |
download | busybox-ce55284ed6f5b5303d9e45d034287c728ef9b05a.tar.gz |
inetd,mount: do not die if uclibc without RPC is detected
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/inetd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/inetd.c b/networking/inetd.c index 39169a935..3bf157b70 100644 --- a/networking/inetd.c +++ b/networking/inetd.c @@ -227,7 +227,8 @@ #if ENABLE_FEATURE_INETD_RPC # if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__) -# error "You need to build uClibc with UCLIBC_HAS_RPC for NFS support" +# 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 */ # endif # include <rpc/rpc.h> # include <rpc/pmap_clnt.h> |