diff options
author | Adam Duskett <Aduskett@gmail.com> | 2017-07-28 06:44:40 -0400 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2017-07-29 00:05:25 +0200 |
commit | 6103ce335acabd8f336f8eb7c239da6f1c080e04 (patch) | |
tree | bb6347ba0efc908c737d067334d40b594bfc389d | |
parent | d0b7d387e4842102bff3684d7a366da25c55c852 (diff) | |
download | buildroot-6103ce335acabd8f336f8eb7c239da6f1c080e04.tar.gz buildroot-6103ce335acabd8f336f8eb7c239da6f1c080e04.zip |
host-mariadb: compile against bundled yassl
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@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
-rw-r--r-- | package/mariadb/mariadb.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/mariadb/mariadb.mk b/package/mariadb/mariadb.mk index 1d6c2bcc47..db538fd0f2 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 |