* [Buildroot] [PATCH 1/2] package/ulogd: dbi needs threads
@ 2023-01-14 17:25 Fabrice Fontaine
2023-01-14 17:25 ` [Buildroot] [PATCH 2/2] package/ulogd: fix mysql build Fabrice Fontaine
2023-01-30 21:57 ` [Buildroot] [PATCH 1/2] package/ulogd: dbi needs threads Thomas Petazzoni via buildroot
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2023-01-14 17:25 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine
Commit 3b3dbd0183265c3f7da49b0b331688fb7573383f forgot to disable dbi
without threads
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/ulogd/ulogd.mk | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/package/ulogd/ulogd.mk b/package/ulogd/ulogd.mk
index 561429599c..7d4a1fde4d 100644
--- a/package/ulogd/ulogd.mk
+++ b/package/ulogd/ulogd.mk
@@ -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)
--
2.39.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] package/ulogd: fix mysql build
2023-01-14 17:25 [Buildroot] [PATCH 1/2] package/ulogd: dbi needs threads Fabrice Fontaine
@ 2023-01-14 17:25 ` Fabrice Fontaine
2023-01-30 21:57 ` [Buildroot] [PATCH 1/2] package/ulogd: dbi needs threads Thomas Petazzoni via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2023-01-14 17:25 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine
Fix the following mysql build failure raised since bump to version 2.0.8
in commit 6fc4b59ffd3007ca9e436d33647acc5dfff62970:
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>
---
package/ulogd/ulogd.mk | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/package/ulogd/ulogd.mk b/package/ulogd/ulogd.mk
index 7d4a1fde4d..033acb06c2 100644
--- a/package/ulogd/ulogd.mk
+++ b/package/ulogd/ulogd.mk
@@ -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
--
2.39.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/ulogd: dbi needs threads
2023-01-14 17:25 [Buildroot] [PATCH 1/2] package/ulogd: dbi needs threads Fabrice Fontaine
2023-01-14 17:25 ` [Buildroot] [PATCH 2/2] package/ulogd: fix mysql build Fabrice Fontaine
@ 2023-01-30 21:57 ` Thomas Petazzoni via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-01-30 21:57 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
On Sat, 14 Jan 2023 18:25:05 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> Commit 3b3dbd0183265c3f7da49b0b331688fb7573383f forgot to disable dbi
> without threads
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/ulogd/ulogd.mk | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
Both applied, thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-01-30 21:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-14 17:25 [Buildroot] [PATCH 1/2] package/ulogd: dbi needs threads Fabrice Fontaine
2023-01-14 17:25 ` [Buildroot] [PATCH 2/2] package/ulogd: fix mysql build Fabrice Fontaine
2023-01-30 21:57 ` [Buildroot] [PATCH 1/2] package/ulogd: dbi needs threads Thomas Petazzoni via buildroot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.