1config BR2_PACKAGE_SYSLOG_NG
2	bool "syslog-ng"
3	depends on BR2_USE_WCHAR # glib2
4	depends on BR2_TOOLCHAIN_HAS_THREADS
5	depends on BR2_USE_MMU # fork()
6	depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
7	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
8	select BR2_PACKAGE_JSON_C
9	select BR2_PACKAGE_LIBGLIB2
10	select BR2_PACKAGE_PCRE2
11	select BR2_PACKAGE_OPENSSL
12	help
13	  syslog-ng is an enhanced log daemon, supporting a wide range
14	  of input and output methods: syslog, unstructured text,
15	  queueing, SQL & NoSQL
16
17	  https://www.syslog-ng.com/products/open-source-log-management/
18
19comment "syslog-ng needs a toolchain w/ wchar, threads"
20	depends on BR2_USE_MMU
21	depends on BR2_TOOLCHAIN_HAS_SYNC_4
22	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
23	depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
24