From: Giulio Benetti Date: Sat, 3 Jan 2026 21:59:39 +0000 (+0100) Subject: Fix building on uclibc X-Git-Tag: v9.21.17~9^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e43f62c1233adb9543dd378c6b4fba3dbde75a3;p=thirdparty%2Fbind9.git Fix building on uclibc While building on uclibc this error is thrown: In file included from ./include/dns/log.h:20, from callbacks.c:19: ../../lib/isc/include/isc/log.h:141:9: error: unknown type name ‘off_t’ 141 | off_t maximum_size; | ^~~~~ This is due to missing include unistd.h, so let's add it on top of isc/log.h Signed-off-by: Giulio Benetti --- diff --git a/lib/isc/include/isc/log.h b/lib/isc/include/isc/log.h index a693be7cc12..bae0033fc0d 100644 --- a/lib/isc/include/isc/log.h +++ b/lib/isc/include/isc/log.h @@ -20,6 +20,7 @@ #include #include #include /* XXXDCL NT */ +#include #include #include