From 55c8d1dc25c1c6636cf8bd5bc14cbf2256999341 Mon Sep 17 00:00:00 2001 From: Vasily Kulikov Date: Sat, 31 Dec 2022 22:40:29 +0300 Subject: [PATCH] fix build: fix for freebsd The build error was: include/spdlog/details/tcp_client.h:106:31: error: use of undeclared identifier 'IPPROTO_TCP' --- include/spdlog/details/tcp_client.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/spdlog/details/tcp_client.h b/include/spdlog/details/tcp_client.h index 0daff0eb..45883f34 100644 --- a/include/spdlog/details/tcp_client.h +++ b/include/spdlog/details/tcp_client.h @@ -16,6 +16,7 @@ #include #include #include +#include #include