]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix: nil: Fix building on uclibc
authorOndřej Surý <ondrej@isc.org>
Sun, 4 Jan 2026 20:46:05 +0000 (21:46 +0100)
committerOndřej Surý <ondrej@isc.org>
Sun, 4 Jan 2026 20:46:05 +0000 (21:46 +0100)
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 <giulio.benetti@benettiengineering.com>
Merge branch 'fix/uclibc-off_t-main' into 'main'

See merge request isc-projects/bind9!11422


Trivial merge