mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-05 11:35:01 +00:00
databases/mariadb105-server: Update to 10.5.26
* Includes fix for libxml2 [1] PR: 279763 [1] Reported by: dizzy
This commit is contained in:
parent
595a5d5fa0
commit
35d05b6852
@ -1,5 +1,5 @@
|
||||
PORTNAME?= mariadb
|
||||
PORTVERSION= 10.5.24
|
||||
PORTVERSION= 10.5.26
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= \
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1716634619
|
||||
SHA256 (mariadb-10.5.24.tar.gz) = f677c5edf82aeb394cc41937aea33a3d3cc64ea2ed786adaf162b32f203d14a5
|
||||
SIZE (mariadb-10.5.24.tar.gz) = 115706805
|
||||
TIMESTAMP = 1723535792
|
||||
SHA256 (mariadb-10.5.26.tar.gz) = dd5f99a1d30ae47365fc18b1deeff6dc0ab38ac84e7d9fd9c8c04ff6b01961f1
|
||||
SIZE (mariadb-10.5.26.tar.gz) = 116566259
|
||||
|
@ -1,24 +0,0 @@
|
||||
--- mysys/crc32/crc32c.cc.orig 2020-12-06 15:58:40 UTC
|
||||
+++ mysys/crc32/crc32c.cc
|
||||
@@ -475,6 +475,21 @@ static int arch_ppc_probe(void) {
|
||||
|
||||
return arch_ppc_crc32;
|
||||
}
|
||||
+#elif __FreeBSD__
|
||||
+#include <machine/cpu.h>
|
||||
+#include <sys/auxv.h>
|
||||
+#include <sys/elf_common.h>
|
||||
+static int arch_ppc_probe(void) {
|
||||
+ unsigned long cpufeatures;
|
||||
+ arch_ppc_crc32 = 0;
|
||||
+
|
||||
+#if defined(__powerpc64__)
|
||||
+ elf_aux_info(AT_HWCAP2, &cpufeatures, sizeof(cpufeatures));
|
||||
+ if (cpufeatures & PPC_FEATURE2_HAS_VEC_CRYPTO) arch_ppc_crc32 = 1;
|
||||
+#endif /* __powerpc64__ */
|
||||
+
|
||||
+ return arch_ppc_crc32;
|
||||
+}
|
||||
#endif // __linux__
|
||||
|
||||
static bool isAltiVec() {
|
@ -140,6 +140,7 @@ include/mysql/server/mysql/service_md5.h
|
||||
include/mysql/server/mysql/service_my_crypt.h
|
||||
include/mysql/server/mysql/service_my_print_error.h
|
||||
include/mysql/server/mysql/service_my_snprintf.h
|
||||
include/mysql/server/mysql/service_print_check_msg.h
|
||||
include/mysql/server/mysql/service_progress_report.h
|
||||
include/mysql/server/mysql/service_sha1.h
|
||||
include/mysql/server/mysql/service_sha2.h
|
||||
@ -267,6 +268,7 @@ share/man/man1/mysqldumpslow.1.gz
|
||||
share/man/man1/perror.1.gz
|
||||
share/man/man1/resolve_stack_dump.1.gz
|
||||
share/man/man1/resolveip.1.gz
|
||||
%%WSREP%%share/man/man1/wsrep_sst_backup.1.gz
|
||||
%%WSREP%%share/man/man1/wsrep_sst_common.1.gz
|
||||
%%WSREP%%share/man/man1/wsrep_sst_mariabackup.1.gz
|
||||
%%WSREP%%share/man/man1/wsrep_sst_mysqldump.1.gz
|
||||
|
Loading…
x
Reference in New Issue
Block a user