aboutsummaryrefslogtreecommitdiff
path: root/depends/patches/zeromq/openbsd_kqueue_headers.patch
diff options
context:
space:
mode:
Diffstat (limited to 'depends/patches/zeromq/openbsd_kqueue_headers.patch')
-rw-r--r--depends/patches/zeromq/openbsd_kqueue_headers.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/depends/patches/zeromq/openbsd_kqueue_headers.patch b/depends/patches/zeromq/openbsd_kqueue_headers.patch
new file mode 100644
index 0000000000..7000e209fe
--- /dev/null
+++ b/depends/patches/zeromq/openbsd_kqueue_headers.patch
@@ -0,0 +1,24 @@
+commit ff231d267370493814f933d151441866bf1e200b
+Author: Min RK <benjaminrk@gmail.com>
+Date: Fri Feb 23 13:21:08 2024 +0100
+
+ Problem: cmake search for kqueue missing headers
+
+ Solution: include sys/types.h and sys/time.h as documented by kqueue
+ and used in autotools
+
+ fixes kqueue detection on openbsd
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index f956f3fd..814d5d46 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -380,7 +380,7 @@ endif(WIN32)
+
+ if(NOT MSVC)
+ if(POLLER STREQUAL "")
+- check_cxx_symbol_exists(kqueue sys/event.h HAVE_KQUEUE)
++ check_cxx_symbol_exists(kqueue "sys/types.h;sys/event.h;sys/time.h" HAVE_KQUEUE)
+ if(HAVE_KQUEUE)
+ set(POLLER "kqueue")
+ endif()