package/ulogd: dbi needs threads

Commit 3b3dbd0183 forgot to disable dbi
without threads

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2023-01-14 18:25:05 +01:00 committed by Thomas Petazzoni
parent 7115ab3918
commit 7316a0c2c2

View File

@ -41,7 +41,11 @@ else
ULOGD_CONF_OPTS += --disable-sqlite3
endif
else
ULOGD_CONF_OPTS += --disable-mysql --disable-pgsql --disable-sqlite3
ULOGD_CONF_OPTS += \
--disable-dbi \
--disable-mysql \
--disable-pgsql \
--disable-sqlite3
endif
ifeq ($(BR2_PACKAGE_LIBPCAP),y)