package/ulogd: fix mysql build

Fix the following mysql build failure raised since bump to version 2.0.8
in commit 6fc4b59ffd:

checking for mysql_config... no
configure: error: libmysqlclient not found

Fixes:
 - http://autobuild.buildroot.org/results/a059be353b7464d4e6a7830a685b43bdd7ecd5fa

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:06 +01:00 committed by Thomas Petazzoni
parent 7316a0c2c2
commit 039dfca252

View File

@ -23,7 +23,9 @@ else
ULOGD_CONF_OPTS += --disable-dbi
endif
ifeq ($(BR2_PACKAGE_MYSQL),y)
ULOGD_CONF_OPTS += --enable-mysql
ULOGD_CONF_OPTS += \
--enable-mysql \
--with-mysql-config=$(STAGING_DIR)/usr/bin/mysql_config
ULOGD_DEPENDENCIES += mysql
else
ULOGD_CONF_OPTS += --disable-mysql