package/qt6/qt6base: add support for syslog backend

Signed-off-by: Jesse Van Gavere <jesseevg@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Jesse Van Gavere 2022-08-26 15:54:42 +02:00 committed by Thomas Petazzoni
parent 4337d4b833
commit c3c944e421
2 changed files with 11 additions and 0 deletions

View File

@ -35,6 +35,11 @@ config BR2_PACKAGE_QT6BASE_NETWORK
help
This options enables the Qt6Network library.
config BR2_PACKAGE_QT6BASE_SYSLOG
bool "syslog support"
help
Logs to the standard UNIX logging mechanism.
config BR2_PACKAGE_QT6BASE_TEST
bool "test module"
help

View File

@ -111,5 +111,11 @@ else
QT6BASE_CONF_OPTS += -DFEATURE_xml=OFF
endif
ifeq ($(BR2_PACKAGE_QT6BASE_SYSLOG),y)
QT6BASE_CONF_OPTS += -DFEATURE_syslog=ON
else
QT6BASE_CONF_OPTS += -DFEATURE_syslog=OFF
endif
$(eval $(cmake-package))
$(eval $(host-cmake-package))