From 7a71965e9761f80aa4508472c5b1e3ab03ba018a Mon Sep 17 00:00:00 2001 From: Harry Sintonen Date: Mon, 30 Mar 2020 16:52:43 +0300 Subject: build: fixed build for systems with select() in unistd.h Closes #5169 --- lib/dict.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/dict.c') diff --git a/lib/dict.c b/lib/dict.c index 208a2336f..e42165a9e 100644 --- a/lib/dict.c +++ b/lib/dict.c @@ -46,6 +46,8 @@ #ifdef HAVE_SYS_SELECT_H #include +#elif defined(HAVE_UNISTD_H) +#include #endif #include "urldata.h" -- cgit v1.2.3