Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/community/percona-server
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2023-05-22 20:18:50 +0200
committerErich Eckner <git@eckner.net>2023-05-22 20:18:50 +0200
commite74cde76c104df82b120a7b13964cb786da8f565 (patch)
tree39967e24037929c04aaf79922aa260b437a60a5e /community/percona-server
parent73e1d3b448cc583ab38cae4d61a26f313fad946b (diff)
community -> extra
Diffstat (limited to 'community/percona-server')
-rw-r--r--community/percona-server/LF_PINS-size.patch11
-rw-r--r--community/percona-server/PKGBUILD36
2 files changed, 0 insertions, 47 deletions
diff --git a/community/percona-server/LF_PINS-size.patch b/community/percona-server/LF_PINS-size.patch
deleted file mode 100644
index 49518579..00000000
--- a/community/percona-server/LF_PINS-size.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/include/lf.h 2019-01-23 14:23:40.167072246 +0000
-+++ b/include/lf.h 2019-01-23 14:20:59.600689484 +0000
-@@ -88,7 +88,7 @@
- std::atomic<uint64> link;
- /* we want sizeof(LF_PINS) to be 64 to avoid false sharing */
- #if 2 * 8 + SIZEOF_CHARP * (LF_PINBOX_PINS + 2) != 64
-- char pad[64 - sizeof(uint32) * 2 - sizeof(void *) * (LF_PINBOX_PINS + 2)];
-+ char pad[64 - (2 * 8 + SIZEOF_CHARP * (LF_PINBOX_PINS + 2))];
- #endif
- };
-
diff --git a/community/percona-server/PKGBUILD b/community/percona-server/PKGBUILD
deleted file mode 100644
index d4ca9e87..00000000
--- a/community/percona-server/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-source+=('LF_PINS-size.patch')
-sha256sums+=('c77f581059ee6a9b248c45194d392f45f311b3b755a9de20c274e13bb1a4d28c')
-
-eval "$(
- declare -f prepare | \
- sed '
- $ i patch -p1 -i "$srcdir/LF_PINS-size.patch"
- '
-)"
-
-# disable maintainer mode (-Werror)
-eval "$(
- declare -f build | \
- sed '
- s/-Wno-dev/-Wno-dev -DMYSQL_MAINTAINER_MODE=OFF/
- '
-)"
-
-# do not build storage backends which are only available on 64-bit
-eval "$(
- declare -f build | \
- sed '
- s/-DWITH_ROCKSDB=ON/-DWITH_ROCKSDB=OFF/
- s/-DTOKU_DEBUG_PARANOID=OFF/-DWITH_TOKUDB=OFF/
- '
-)"
-
-# https://bugs.mysql.com/bug.php?id=67898
-# is very old and on WONTFIX, so the error message generator break
-# on 32-bit with optimization, we enable debug mode with no optimizations, sorry
-eval "$(
- declare -f build | \
- sed '
- s/-Wno-dev/-Wno-dev -DWITH_DEBUG=YES/
- '
-)"