Config.in 791 B

1234567891011121314151617181920212223242526272829
  1. config BR2_PACKAGE_LIBXMLRPC
  2. bool "libxmlrpc"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_USE_MMU # fork()
  5. select BR2_PACKAGE_LIBCURL
  6. help
  7. XML-RPC is a quick-and-easy way to make procedure calls over
  8. the Internet. It converts the procedure call into an XML
  9. document, sends it to a remote server using HTTP, and gets
  10. back the response as XML.
  11. http://xmlrpc-c.sourceforge.net/
  12. if BR2_PACKAGE_LIBXMLRPC
  13. config BR2_PACKAGE_LIBXMLRPC_TOOLS_XMLRPC
  14. bool "install cli tool"
  15. depends on !BR2_STATIC_LIBS
  16. help
  17. Command line tool xmlrpc.
  18. comment "cli tool needs a toolchain w/ dynamic library"
  19. depends on BR2_STATIC_LIBS
  20. endif # BR2_PACKAGE_LIBXMLRPC
  21. comment "libxmlrpc needs a toolchain w/ threads"
  22. depends on BR2_USE_MMU
  23. depends on !BR2_TOOLCHAIN_HAS_THREADS