Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. comment "exiv2 needs a uClibc or glibc toolchain w/ C++, wchar, dynamic library, threads"
  2. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
  3. || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS \
  4. || BR2_TOOLCHAIN_USES_MUSL
  5. config BR2_PACKAGE_EXIV2
  6. bool "exiv2"
  7. depends on !BR2_STATIC_LIBS
  8. depends on BR2_INSTALL_LIBSTDCPP
  9. depends on BR2_TOOLCHAIN_HAS_THREADS
  10. depends on !BR2_TOOLCHAIN_USES_MUSL # PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
  11. depends on BR2_USE_WCHAR
  12. help
  13. Exiv2 is a C++ library and a command line utility to manage
  14. image metadata. It provides fast and easy read and write
  15. access to the Exif, IPTC and XMP metadata of images in
  16. various formats.
  17. http://www.exiv2.org/
  18. if BR2_PACKAGE_EXIV2
  19. config BR2_PACKAGE_EXIV2_PNG
  20. bool "PNG image support"
  21. select BR2_PACKAGE_ZLIB
  22. help
  23. Build with PNG image support
  24. config BR2_PACKAGE_EXIV2_XMP
  25. bool "XMP support"
  26. select BR2_PACKAGE_EXPAT
  27. help
  28. Build with XMP support
  29. config BR2_PACKAGE_EXIV2_LENSDATA
  30. bool "Nikon lens name database"
  31. help
  32. Integrate Nikon lens name database.
  33. This database comes from a thirdparty and is free to use in
  34. non-commercial, GPL or open source software only.
  35. For more information see src/nikonmn_int.cpp.
  36. endif