1config BR2_PACKAGE_LIBTIRPC 2 bool "libtirpc" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 help 5 Libtirpc is a port of Sun's Transport-Independent RPC 6 library to Linux. 7 8 http://sourceforge.net/projects/libtirpc/ 9 10config BR2_PACKAGE_LIBTIRPC_GSS 11 bool "gss" 12 depends on BR2_USE_MMU # libkrb5 13 depends on !BR2_STATIC_LIBS # libkrb5 14 depends on BR2_PACKAGE_LIBTIRPC 15 select BR2_PACKAGE_LIBKRB5 16 help 17 Enable GSSAPI support 18 19comment "libtirpc needs a toolchain w/ threads" 20 depends on !BR2_TOOLCHAIN_HAS_THREADS 21 22comment "libtirpc gss support needs a toolchain w/ dynamic library" 23 depends on BR2_USE_MMU 24 depends on BR2_STATIC_LIBS 25 depends on BR2_PACKAGE_LIBTIRPC 26