Config.in 454 B

123456789101112131415
  1. config BR2_PACKAGE_UNRAR
  2. bool "unrar"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_USE_WCHAR
  7. help
  8. RAR file uncompressor.
  9. http://www.rarlab.com/rar_add.htm
  10. comment "unrar needs a toolchain w/ C++, wchar, threads, gcc >= 4.8"
  11. depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP \
  12. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 \
  13. || !BR2_TOOLCHAIN_HAS_THREADS