diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2024-07-20 11:14:00 +0200 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2024-07-22 14:08:06 +0200 |
commit | a1e455b30e9ed52eddc6d6056bef7fc02b4e251b (patch) | |
tree | 0de706ae54fc131aae04296a3c37d3b0f44a9fd5 /CMakeLists.txt | |
parent | d0ab4de4422094d300975aff1109a021788b9de1 (diff) | |
download | ouroboros-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>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 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") |