Config.in 734 B

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