1config 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 18 http://www.rsyslog.com 19 20comment "rsyslog needs a uClibc or glibc toolchain w/ threads, dynamic library" 21 depends on BR2_USE_MMU 22 depends on BR2_TOOLCHAIN_HAS_SYNC_4 23 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \ 24 || BR2_TOOLCHAIN_USES_MUSL 25 depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS 26