Config.in 665 B

12345678910111213141516171819202122232425
  1. config 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. http://sourceforge.net/projects/libtirpc/
  8. config BR2_PACKAGE_LIBTIRPC_GSS
  9. bool "gss"
  10. depends on BR2_USE_MMU # libkrb5
  11. depends on !BR2_STATIC_LIBS # libkrb5
  12. depends on BR2_PACKAGE_LIBTIRPC
  13. select BR2_PACKAGE_LIBKRB5
  14. help
  15. Enable GSSAPI support
  16. comment "libtirpc needs a toolchain w/ threads"
  17. depends on !BR2_TOOLCHAIN_HAS_THREADS
  18. comment "libtirpc gss support needs a toolchain w/ dynamic library"
  19. depends on BR2_USE_MMU
  20. depends on BR2_STATIC_LIBS
  21. depends on BR2_PACKAGE_LIBTIRPC