mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Package libtirpc with commit[1] exposes --enable-rpcdb so make it selectable to allow packages that use rpcdb functions to enable it and build correctly. [1]: https://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=7cea8ad66aecc21e6caae330b5d31075af399193 Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Reviewed-by: Petr Vorel <petr.vorel@gmail.com> [Bernd: move gss comment into if-block] Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
33 lines
710 B
Plaintext
33 lines
710 B
Plaintext
config BR2_PACKAGE_LIBTIRPC
|
|
bool "libtirpc"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
help
|
|
Libtirpc is a port of Sun's Transport-Independent RPC
|
|
library to Linux.
|
|
|
|
http://sourceforge.net/projects/libtirpc/
|
|
|
|
if BR2_PACKAGE_LIBTIRPC
|
|
|
|
config BR2_PACKAGE_LIBTIRPC_GSS
|
|
bool "gss"
|
|
depends on BR2_USE_MMU # libkrb5
|
|
depends on !BR2_STATIC_LIBS # libkrb5
|
|
select BR2_PACKAGE_LIBKRB5
|
|
help
|
|
Enable GSSAPI support
|
|
|
|
comment "libtirpc gss support needs a toolchain w/ dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_LIBTIRPC_RPCDB
|
|
bool "rpcdb"
|
|
help
|
|
Enable RPCDB support
|
|
|
|
endif
|
|
|
|
comment "libtirpc needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|