Config.in 989 B

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