xref: /OK3568_Linux_fs/buildroot/package/phidgetwebservice/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
16	  The phidgetwebservice client program uses the libphidget
17	  HTTP functions to send commands to the phidgetwebservice.
18
19	  http://phidgets.com/
20
21comment "phidgetwebservice needs a toolchain w/ threads, dynamic library, gcc >= 4.9"
22	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
23		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
24