diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-08-28 21:46:41 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-08-29 09:48:37 +0200 |
commit | a49c1f6a0904025e1e1d60ed0aac0821cb5a931c (patch) | |
tree | bc5a71854f08928bd79e28dce413dbc74866b8e2 | |
parent | app-antivirus/clamav: remove unused patch (diff) | |
download | gentoo-a49c1f6a0904025e1e1d60ed0aac0821cb5a931c.tar.gz gentoo-a49c1f6a0904025e1e1d60ed0aac0821cb5a931c.tar.bz2 gentoo-a49c1f6a0904025e1e1d60ed0aac0821cb5a931c.zip |
dev-db/mariadb: remove unused patches
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32496
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r-- | dev-db/mariadb/files/mariadb-10.5.17-gcc-13.patch | 23 | ||||
-rw-r--r-- | dev-db/mariadb/files/mariadb-10.6.11-configure-clang16.patch | 26 |
2 files changed, 0 insertions, 49 deletions
diff --git a/dev-db/mariadb/files/mariadb-10.5.17-gcc-13.patch b/dev-db/mariadb/files/mariadb-10.5.17-gcc-13.patch deleted file mode 100644 index c474028e7e06..000000000000 --- a/dev-db/mariadb/files/mariadb-10.5.17-gcc-13.patch +++ /dev/null @@ -1,23 +0,0 @@ -https://bugs.gentoo.org/895698 -https://github.com/MariaDB/server/commit/75bbf645a66db797be2abd3a348dce32eb753acc - -From 75bbf645a66db797be2abd3a348dce32eb753acc Mon Sep 17 00:00:00 2001 -From: Khem Raj <raj.khem@gmail.com> -Date: Tue, 24 Jan 2023 21:40:43 -0800 -Subject: [PATCH] Add missing include <cstdio> - -This is needed with GCC 13 and newer [1] - -[1] https://www.gnu.org/software/gcc/gcc-13/porting_to.html - -Signed-off-by: Khem Raj <raj.khem@gmail.com> ---- a/tpool/aio_linux.cc -+++ b/tpool/aio_linux.cc -@@ -19,6 +19,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 - 1301 USA*/ - #ifdef LINUX_NATIVE_AIO - # include <thread> - # include <atomic> -+# include <cstdio> - # include <libaio.h> - # include <sys/syscall.h> - diff --git a/dev-db/mariadb/files/mariadb-10.6.11-configure-clang16.patch b/dev-db/mariadb/files/mariadb-10.6.11-configure-clang16.patch deleted file mode 100644 index cc97319f4bc1..000000000000 --- a/dev-db/mariadb/files/mariadb-10.6.11-configure-clang16.patch +++ /dev/null @@ -1,26 +0,0 @@ -https://github.com/MariaDB/server/pull/2593 - -From 50c034d6de4fa508186cb8f75cb6073f5d0ced2f Mon Sep 17 00:00:00 2001 -From: Florian Weimer <fweimer@redhat.com> -Date: Tue, 11 Apr 2023 09:39:40 +0200 -Subject: [PATCH] rocksdb: Define _GNU_SOURCE during fallocate CMake probe - -The glibc headers declare fallocate only if _GNU_SOURCE is defined. -Without this change, the probe fails with C compilers which do not -support implicit function declarations even if the system does in -fact support the fallocate function. - -Upstream rocksdb does not need this because the probe is run with the -C++ compiler, and current g++ versions define _GNU_SOURCE -automatically. ---- a/storage/rocksdb/build_rocksdb.cmake -+++ b/storage/rocksdb/build_rocksdb.cmake -@@ -134,6 +134,7 @@ option(WITH_FALLOCATE "build with fallocate" ON) - if(WITH_FALLOCATE AND UNIX) - include(CheckCSourceCompiles) - CHECK_C_SOURCE_COMPILES(" -+#define _GNU_SOURCE - #include <fcntl.h> - #include <linux/falloc.h> - int main() { - |