summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2024-07-20 11:14:00 +0200
committerSander Vrijders <sander@ouroboros.rocks>2024-07-22 14:08:06 +0200
commita1e455b30e9ed52eddc6d6056bef7fc02b4e251b (patch)
tree0de706ae54fc131aae04296a3c37d3b0f44a9fd5
parentd0ab4de4422094d300975aff1109a021788b9de1 (diff)
downloadouroboros-a1e455b30e9ed52eddc6d6056bef7fc02b4e251b.tar.gz
ouroboros-a1e455b30e9ed52eddc6d6056bef7fc02b4e251b.zip
irmd: Fix compilation with configfile on FreeBSD
AF_INET is defined in <sys/socket.h> on FreeBSD. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
-rw-r--r--CMakeLists.txt2
-rw-r--r--src/irmd/configfile.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c08867b7..0d32f881 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8.12.2...3.29.1)
+cmake_minimum_required(VERSION 2.8.12.2...3.30.0)
cmake_policy(VERSION ${CMAKE_VERSION})
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
diff --git a/src/irmd/configfile.c b/src/irmd/configfile.c
index 688c4ade..279af80f 100644
--- a/src/irmd/configfile.c
+++ b/src/irmd/configfile.c
@@ -47,6 +47,9 @@
#include <string.h>
#include <toml.h>
#include <arpa/inet.h>
+#ifdef __FreeBSD__
+#include <sys/socket.h>
+#endif
#define ERRBUFSZ 200