summaryrefslogtreecommitdiff
path: root/net/haproxy
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>2022-01-03 11:45:57 +0100
committerStefan Eßer <se@FreeBSD.org>2022-01-03 11:45:57 +0100
commit2913605c79b25b88a4a21b3d93ec2ab11949eaaa (patch)
treedd09bc5b0c889cb91d3365b2a011c15de4ebcfb0 /net/haproxy
parentwww/larbin: fix build on FreeBSD-13 and 14 (diff)
net/haproxy: fix build on -CURRENT
The CPU_SET macros in -CURRENT have been made compatible with GLIBC. A simple test for the new signature of CPU_AND, CPU_OR, ... is the existence of a CPU_ALLOC macro. Approved by: portmgr (implicit) MFH: 2022Q1
Diffstat (limited to 'net/haproxy')
-rw-r--r--net/haproxy/files/patch-src_cpuset.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/net/haproxy/files/patch-src_cpuset.c b/net/haproxy/files/patch-src_cpuset.c
new file mode 100644
index 000000000000..42f04b37e6f6
--- /dev/null
+++ b/net/haproxy/files/patch-src_cpuset.c
@@ -0,0 +1,14 @@
+--- src/cpuset.c.orig 2021-12-23 16:47:51 UTC
++++ src/cpuset.c
+@@ -53,7 +53,11 @@ void ha_cpuset_and(struct hap_cpuset *dst, const struc
+ CPU_AND(&dst->cpuset, &dst->cpuset, &src->cpuset);
+
+ #elif defined(CPUSET_USE_FREEBSD_CPUSET)
++#if defined(CPU_ALLOC)
++ CPU_AND(&dst->cpuset, &dst->cpuset, &src->cpuset);
++#else
+ CPU_AND(&dst->cpuset, &src->cpuset);
++#endif
+
+ #elif defined(CPUSET_USE_ULONG)
+ dst->cpuset &= src->cpuset;