mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
- Update to 25.3.29
- Add LICENSE_FILE PR: 243705 Submitted by: Teemu Ollakka <teemu.ollakka@galeracluster.com> Approved by: devel@galeracluster.com (maintainer timeout, >16 weeks), mentors (implicit) Changelog: http://releases.galeracluster.com/galera-3/release-notes-galera-25.3.29.txt
This commit is contained in:
parent
2a03fed992
commit
a3c29abd8a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=536449
@ -2,15 +2,15 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= galera
|
||||
PORTVERSION?= 25.3.28
|
||||
PORTVERSION?= 25.3.29
|
||||
DISTVERSIONPREFIX?= release_
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= devel@galeracluster.com
|
||||
COMMENT= Synchronous multi-master replication engine
|
||||
|
||||
LICENSE= GPLv2
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BROKEN_aarch64= fails to compile: gu_int128.h: use of undeclared identifier '__bswap64_var'
|
||||
BROKEN_armv6= fails to compile: gu_int128.h: use of undeclared identifier '__bswap64_var'
|
||||
|
@ -1,5 +1,5 @@
|
||||
TIMESTAMP = 1567520244
|
||||
SHA256 (codership-galera-release_25.3.28_GH0.tar.gz) = e49fef6a2451261c01170727f763094b4e69b99ccb1e45a4fdc7cf5f291913cc
|
||||
SIZE (codership-galera-release_25.3.28_GH0.tar.gz) = 3293508
|
||||
TIMESTAMP = 1579781549
|
||||
SHA256 (codership-galera-release_25.3.29_GH0.tar.gz) = c0ecf690664f2d701ad9bca644afcaaea3dec94d9ab858cbf64b40ae87d3521c
|
||||
SIZE (codership-galera-release_25.3.29_GH0.tar.gz) = 3302281
|
||||
SHA256 (codership-wsrep-API-eab2d5d5a31672c0b7d116ef1629ff18392fd7d0_GH0.tar.gz) = 3c235868ed330d8d702e7b7541c24c1926b1fd9e6b8aa673b032a2318896e8a0
|
||||
SIZE (codership-wsrep-API-eab2d5d5a31672c0b7d116ef1629ff18392fd7d0_GH0.tar.gz) = 47032
|
||||
|
20
databases/galera/files/patch-gcomm_src_asio__tcp.cpp
Normal file
20
databases/galera/files/patch-gcomm_src_asio__tcp.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
--- gcomm/src/asio_tcp.cpp.orig 2020-01-23 13:38:58 UTC
|
||||
+++ gcomm/src/asio_tcp.cpp
|
||||
@@ -775,7 +775,7 @@ void gcomm::AsioTcpSocket::assign_remote_addr()
|
||||
gcomm::SocketStats gcomm::AsioTcpSocket::stats() const
|
||||
{
|
||||
SocketStats ret;
|
||||
-#if defined(__linux__) || defined(__FreeBSD__)
|
||||
+#if defined(__linux__)
|
||||
struct tcp_info tcpi;
|
||||
memset(&tcpi, 0, sizeof(tcpi));
|
||||
socklen_t tcpi_len(sizeof(tcpi));
|
||||
@@ -798,7 +798,7 @@ gcomm::SocketStats gcomm::AsioTcpSocket::stats() const
|
||||
ret.send_queue_bytes = send_q_.queued_bytes();
|
||||
ret.send_queue_segments = send_q_.segments();
|
||||
}
|
||||
-#endif /* __linux__ || __FreeBSD__ */
|
||||
+#endif /* __linux__ */
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user