mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 12:20:00 -04:00
4247. [port] Require both HAVE_JSON and JSON_C_VERSION to be
defined to report json library version. [RT #41045]
(cherry picked from commit f06b6a9b14)
This commit is contained in:
parent
ed3f67b837
commit
b105ce7a8b
2 changed files with 4 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4247. [port] Require both HAVE_JSON and JSON_C_VERSION to be
|
||||
defined to report json library version. [RT #41045]
|
||||
|
||||
4246. [test] Ensure the statschannel system test runs when BIND
|
||||
is not built with libjson. [RT #40944]
|
||||
|
||||
|
|
|
|||
|
|
@ -662,7 +662,7 @@ parse_command_line(int argc, char *argv[]) {
|
|||
printf("linked to libxml2 version: %s\n",
|
||||
xmlParserVersion);
|
||||
#endif
|
||||
#ifdef HAVE_JSON
|
||||
#if defined(HAVE_JSON) && defined(JSON_C_VERSION)
|
||||
printf("compiled with libjson-c version: %s\n",
|
||||
JSON_C_VERSION);
|
||||
printf("linked to libjson-c version: %s\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue