Config.in 881 B

12345678910111213141516171819202122
  1. config BR2_PACKAGE_PHIDGETWEBSERVICE
  2. bool "phidgetwebservice"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS # libusb, libphidget
  4. depends on !BR2_STATIC_LIBS # libphidget
  5. select BR2_PACKAGE_LIBPHIDGET
  6. help
  7. phidgetwebservice (the Phidget WebService) provides an HTTP
  8. front-end to the libphidget device control API. This
  9. provides an alternative to the libphidget C linkage
  10. interface for controlling locally attached Phidgets USB
  11. devices and it also allows you to control Phidget USB
  12. devices remotely when the host running the phidgetwebservice
  13. has an exposed network interface.
  14. The phidgetwebservice client program uses the libphidget
  15. HTTP functions to send commands to the phidgetwebservice.
  16. http://phidgets.com/
  17. comment "phidgetwebservice needs a toolchain w/ threads, dynamic library"
  18. depends on !BR2_TOOLCHAIN_HAS_THREADS
  19. depends on BR2_STATIC_LIBS