aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/mysql/mariadb/revert-fix-for-MDEV-5120.patch
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-01-04 16:09:32 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2015-01-05 10:56:37 +0000
commita050b987768b6f8cd40b44aae13716e39b942c96 (patch)
tree247e4b99dbf955338fa737fade1fea672beb9b44 /meta-oe/recipes-support/mysql/mariadb/revert-fix-for-MDEV-5120.patch
parent82b594b205082fa88722805a2f04a4316bf0f922 (diff)
downloadmeta-openembedded-contrib-a050b987768b6f8cd40b44aae13716e39b942c96.tar.gz
mariadb: update to 5.5.41
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta-oe/recipes-support/mysql/mariadb/revert-fix-for-MDEV-5120.patch')
-rw-r--r--meta-oe/recipes-support/mysql/mariadb/revert-fix-for-MDEV-5120.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/meta-oe/recipes-support/mysql/mariadb/revert-fix-for-MDEV-5120.patch b/meta-oe/recipes-support/mysql/mariadb/revert-fix-for-MDEV-5120.patch
deleted file mode 100644
index 41493a1c56..0000000000
--- a/meta-oe/recipes-support/mysql/mariadb/revert-fix-for-MDEV-5120.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Revert mariadb commit revno 4300 in branch 5.5 which fixes
-https://mariadb.atlassian.net/browse/MDEV-5120.
-
-------------------------------------------------------------
-revno: 4300
-fixes bug: https://mariadb.atlassian.net/browse/MDEV-5120
-committer: Sergei Golubchik <sergii@pisem.net>
-branch nick: 5.5
-timestamp: Thu 2014-10-02 11:57:40 +0200
-message:
- MDEV-5120 Test suite test maria-no-logging fails
-
- stat structure (from <sys/stat.h>) is conditionally defined
- to have different layout and size depending on the defined macros.
- The correct macro is defined in my_config.h, which means it MUST be
- included first (or, at least before <features.h> - so, practically,
- before including any system headers).
-------------------------------------------------------------
-
-It causes modphp fails to build. Bug MDEV-5120 is an test suite test
-maria-no-logging fails. There is no side effect to revert it.
-
-Upstream-Status: Backport
-
-Signed-off-by: Kai Kang <kai.kang@windriver.com>
----
---- mariadb-5.5.40/config.h.cmake.orig 2014-11-13 14:23:50.868147145 +0800
-+++ mariadb-5.5.40/config.h.cmake 2014-11-13 14:24:23.372148031 +0800
-@@ -641,17 +641,4 @@
- #cmakedefine SIZEOF_TIME_T @SIZEOF_TIME_T@
- #cmakedefine TIME_T_UNSIGNED @TIME_T_UNSIGNED@
-
--/*
-- stat structure (from <sys/stat.h>) is conditionally defined
-- to have different layout and size depending on the defined macros.
-- The correct macro is defined in my_config.h, which means it MUST be
-- included first (or at least before <features.h> - so, practically,
-- before including any system headers).
--
-- __GLIBC__ is defined in <features.h>
--*/
--#ifdef __GLIBC__
--#error <my_config.h> MUST be included first!
--#endif
--
- #endif