Config.in 940 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_POLKIT
  2. bool "polkit"
  3. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2, dbus
  5. depends on BR2_USE_MMU # libglib2, dbus
  6. depends on BR2_USE_WCHAR # libglib2
  7. depends on !BR2_STATIC_LIBS # duktape
  8. depends on !BR2_OPTIMIZE_FAST # duktape
  9. select BR2_PACKAGE_DBUS # runtime
  10. select BR2_PACKAGE_DUKTAPE
  11. select BR2_PACKAGE_EXPAT
  12. select BR2_PACKAGE_LIBGLIB2
  13. help
  14. PolicyKit is a toolkit for defining and handling
  15. authorizations. It is used for allowing unprivileged
  16. processes to speak to privileged processes.
  17. http://www.freedesktop.org/wiki/Software/polkit
  18. comment "polkit needs a toolchain with dynamic library, wchar, threads, gcc >= 7"
  19. depends on BR2_USE_MMU
  20. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
  21. BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
  22. comment "polkit can't be built with Optimize for fast"
  23. depends on BR2_OPTIMIZE_FAST