From: Michal Nowak Date: Mon, 2 Jun 2025 09:01:09 +0000 (+0000) Subject: fix: dev: Allow commandline.c to compile on Solaris X-Git-Tag: v9.21.9~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ead7b480034b1fb37d5b51136785ca9c4a182f79;p=thirdparty%2Fbind9.git fix: dev: Allow commandline.c to compile on Solaris commandline.c failed to compile on Solaris because NAME_MAX was undefined. Include 'isc/dir.h' which defines NAME_MAX for platforms that don't define it. In file included from commandline.c:54: ./include/isc/commandline.h:31:38: error: 'NAME_MAX' undeclared here (not in a function) 31 | extern char isc_commandline_progname[NAME_MAX]; | ^~~~~~~~ Merge branch 'mnowak/fix-solaris-commandline-h' into 'main' See merge request isc-projects/bind9!10524 --- ead7b480034b1fb37d5b51136785ca9c4a182f79