deps: add libinotify-kqueue on BSDs after 8dd2cd41fb (#9197)

src/config/ConfigWatcher.cpp:2:10: fatal error: 'sys/inotify.h' file not found
    2 | #include <sys/inotify.h>
      |          ^~~~~~~~~~~~~~~
This commit is contained in:
Jan Beich
2025-01-27 22:06:48 +00:00
committed by Vaxry
parent a7d7df5c4b
commit 017f322532
3 changed files with 8 additions and 0 deletions

View File

@@ -58,6 +58,7 @@ endif
backtrace_dep = cpp_compiler.find_library('execinfo', required: false)
epoll_dep = dependency('epoll-shim', required: false) # timerfd on BSDs
inotify_dep = dependency('libinotify', required: false) # inotify on BSDs
re2 = dependency('re2', required: true)