From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ryan Coe Date: Sun, 18 Sep 2016 20:43:39 -0700 Subject: [Buildroot] [RFC v2] mysql: replace mysql with mariadb 10.1 In-Reply-To: <20160912220551.17934-2-bluemrp9@gmail.com> References: <20160912220551.17934-2-bluemrp9@gmail.com> Message-ID: <20160919034340.4233-1-bluemrp9@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net This patch represents my attempt to replace the aging mysql 5.1 that is currently shipped with Buildroot. I am replacing mysql altogether with mariadb version 10.1. I have been able to test this with both an arm and a x86_64 build, and it has also been tested with glibc and uclibc. I have not tested it with systemd. This patch is based on the work done by Sylvain Raybaud. Ryan Coe (1): mysql: replace mysql with mariadb 10.1 package/Config.in | 2 +- package/mysql/0000-ac_cache_check.patch | 156 - package/mysql/0001-add-extra-check-for-librt.patch | 26 + package/mysql/0001-configure-ps-cache-check.patch | 39 - package/mysql/0002-use-new-readline-iface.patch | 21 - .../mysql/0003-ac_stack_direction-is-unset.patch | 15 - .../mysql/0004-Fix-gen_lex_hash-execution.patch | 32 - .../0005-bison_3_breaks_mysql_server_build.patch | 3310 -------------------- package/mysql/0006-no-force-static-build.patch | 18 - .../0007-dont-install-in-mysql-directory.patch | 182 -- package/mysql/Config.in | 18 +- package/mysql/S97mysqld | 103 +- package/mysql/mysql.hash | 4 +- package/mysql/mysql.mk | 187 +- package/mysql/mysqld.service | 2 +- 15 files changed, 204 insertions(+), 3911 deletions(-) delete mode 100644 package/mysql/0000-ac_cache_check.patch create mode 100644 package/mysql/0001-add-extra-check-for-librt.patch delete mode 100644 package/mysql/0001-configure-ps-cache-check.patch delete mode 100644 package/mysql/0002-use-new-readline-iface.patch delete mode 100644 package/mysql/0003-ac_stack_direction-is-unset.patch delete mode 100644 package/mysql/0004-Fix-gen_lex_hash-execution.patch delete mode 100644 package/mysql/0005-bison_3_breaks_mysql_server_build.patch delete mode 100644 package/mysql/0006-no-force-static-build.patch delete mode 100644 package/mysql/0007-dont-install-in-mysql-directory.patch -- 2.9.3