diff options
author | Alexey Neyman <stilor@att.net> | 2018-02-10 12:11:14 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-02-10 12:11:14 -0800 |
commit | 89fdeb9af2677169bea5bde8a2ce4d2411b35697 (patch) | |
tree | 8e05ecab2816f3f1a4d4d4fd19692162bc7ec64c /config/libc | |
parent | a3e1adbe71d6c8478dd4cd00eaea8fa594bdd9b1 (diff) | |
download | crosstool-ng-89fdeb9af2677169bea5bde8a2ce4d2411b35697.tar.gz crosstool-ng-89fdeb9af2677169bea5bde8a2ce4d2411b35697.tar.bz2 crosstool-ng-89fdeb9af2677169bea5bde8a2ce4d2411b35697.zip |
uClibc-ng retired RPC support as of 1.0.23
... make the corresponding option conditional.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/libc')
-rw-r--r-- | config/libc/uClibc.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/libc/uClibc.in b/config/libc/uClibc.in index 174dfdc4..ba1178c7 100644 --- a/config/libc/uClibc.in +++ b/config/libc/uClibc.in @@ -21,6 +21,10 @@ comment "'softfp' ABI and uClibc is not entirely tested in crosstool-NG" comment "You may experience issues, although it should work just fine" endif # ARCH_FLOAT_SOFTFP +config LIBC_UCLIBC_HAS_SUNRPC + bool + default y if !UCLIBC_1_0_23_or_later + config LIBC_UCLIBC_PARALLEL def_bool y depends on UCLIBC_0_9_33_2_or_later @@ -188,6 +192,7 @@ config LIBC_UCLIBC_FENV config LIBC_UCLIBC_RPC bool prompt "Add support for RPC" + depends on LIBC_UCLIBC_HAS_SUNRPC help Enable support for remote procedure calls (RPC) in uClibc. |