Config.in 518 B

12345678910111213141516
  1. config BR2_PACKAGE_LIBGPHOTO2
  2. bool "libgphoto2"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
  5. select BR2_PACKAGE_LIBTOOL
  6. select BR2_PACKAGE_LIBUSB
  7. select BR2_PACKAGE_LIBXML2
  8. help
  9. libgphoto2 is the core library designed to allow access to
  10. digital camera by external programs.
  11. http://gphoto.org/proj/libgphoto2/
  12. comment "libgphoto needs a toolchain w/ threads, gcc >= 4.9"
  13. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  14. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9