commit | 5592c7b455dc89584e1241f3952ca5e5c9fbf687 | [log] [tgz] |
---|---|---|
author | David Carlier <devnexen@gmail.com> | Sat Oct 30 12:22:21 2021 +0100 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Tue Nov 02 13:58:28 2021 +0100 |
tree | 0d1b638bef3112d8845ec0cd3106faa2247efc60 | |
parent | d1187eb3e1727b6ccf21ec705d4a51b11afba5f5 [diff] |
BUILD/MINOR: cpuset freebsd build fix Add missing strings.h header. Required for ffsl definition used by CPU_FFS macro. This must be backported up to 2.4.
diff --git a/include/haproxy/cpuset-t.h b/include/haproxy/cpuset-t.h index 0d5b6c8..541fb75 100644 --- a/include/haproxy/cpuset-t.h +++ b/include/haproxy/cpuset-t.h
@@ -9,6 +9,7 @@ #ifdef __FreeBSD__ #include <sys/_cpuset.h> #include <sys/cpuset.h> +#include <strings.h> #endif #endif