[Buildroot] [git commit branch/2017.02.x] host-mariadb: compile against bundled yassl

Peter Korsgaard peter at korsgaard.com
Mon Sep 4 06:43:13 UTC 2017


commit: https://git.buildroot.net/buildroot/commit/?id=0813899c435a41240898b94df73c54e8aa8e94f9
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2017.02.x

On Fedora26, openssl 1.1.x is included by default.  This causes build
errors when building the host variant of mariadb.

Adding -DWITH_SSL=bundled fixes this issue.

Signed-off-by: Adam Duskett <aduskett at gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout at mind.be>
(cherry picked from commit 6103ce335acabd8f336f8eb7c239da6f1c080e04)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/mariadb/mariadb.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/mariadb/mariadb.mk b/package/mariadb/mariadb.mk
index ec41726..d2d55b5 100644
--- a/package/mariadb/mariadb.mk
+++ b/package/mariadb/mariadb.mk
@@ -67,6 +67,8 @@ MARIADB_CONF_OPTS += \
 	-DMYSQL_DATADIR=/var/lib/mysql \
 	-DMYSQL_UNIX_ADDR=$(MYSQL_SOCKET)
 
+HOST_MARIADB_CONF_OPTS += -DWITH_SSL=bundled
+
 # Some helpers must be compiled for host in order to crosscompile mariadb for
 # the target. They are then included by import_executables.cmake which is
 # generated during the build of the host helpers. It is not necessary to build


More information about the buildroot mailing list