Fixes: http://autobuild.buildroot.org/results/8ba720f47f74df94b8c70ac4befd47c47ce65f2f Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: "Samuel Martin" <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
17 lines
631 B
Plaintext
17 lines
631 B
Plaintext
config BR2_PACKAGE_RPCBIND
|
|
bool "rpcbind"
|
|
# We really need libtirpc and can't work with the native RPC
|
|
# implementation of toolchains.
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libtirpc
|
|
select BR2_PACKAGE_LIBTIRPC
|
|
# uClibc toolchains provided by ADI don't have AI_ADDRCONFIG
|
|
# support, needed for libtirpc
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
|
|
!BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
|
|
help
|
|
The rpcbind utility is a server that converts RPC program numbers
|
|
into universal addresses.
|
|
|
|
comment "rpcbind requires a toolchain with threading support"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|