Config.in 916 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_RSYSLOG
  2. bool "rsyslog"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_USE_MMU # fork()
  5. depends on !BR2_STATIC_LIBS # modules
  6. depends on !BR2_TOOLCHAIN_USES_MUSL # GLOB_BRACE
  7. # Propagate the exact same dependency from libfastjson,
  8. # even though rsyslog already depends on threads for itself:
  9. depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_THREADS
  10. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  11. select BR2_PACKAGE_ZLIB
  12. select BR2_PACKAGE_LIBESTR
  13. select BR2_PACKAGE_LIBLOGGING
  14. select BR2_PACKAGE_LIBFASTJSON
  15. help
  16. Rsyslog is a powerful and flexible syslog implementation
  17. http://www.rsyslog.com
  18. comment "rsyslog needs a uClibc or glibc toolchain w/ threads, dynamic library"
  19. depends on BR2_USE_MMU
  20. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  21. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
  22. || BR2_TOOLCHAIN_USES_MUSL
  23. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS