mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
[master] version cleanup
4073. [cleanup] Add libjson-c version number reporting to "named -V"; normalize version number formatting. [RT #38056]
This commit is contained in:
@@ -625,16 +625,16 @@ parse_command_line(int argc, char *argv[]) {
|
||||
ns_g_username = isc_commandline_argument;
|
||||
break;
|
||||
case 'v':
|
||||
printf("%s %s", ns_g_product, ns_g_version);
|
||||
if (*ns_g_description != 0)
|
||||
printf(" %s", ns_g_description);
|
||||
printf("\n");
|
||||
printf("%s %s%s%s <id:%s>\n",
|
||||
ns_g_product, ns_g_version,
|
||||
(*ns_g_description != '\0') ? " " : "",
|
||||
ns_g_description, ns_g_srcid);
|
||||
exit(0);
|
||||
case 'V':
|
||||
printf("%s %s", ns_g_product, ns_g_version);
|
||||
if (*ns_g_description != 0)
|
||||
printf(" %s", ns_g_description);
|
||||
printf(" <id:%s> built by %s with %s\n", ns_g_srcid,
|
||||
printf("%s %s%s%s <id:%s>\n", ns_g_product, ns_g_version,
|
||||
(*ns_g_description != '\0') ? " " : "",
|
||||
ns_g_description, ns_g_srcid);
|
||||
printf("built by %s with %s\n",
|
||||
ns_g_builder, ns_g_configargs);
|
||||
#ifdef __clang__
|
||||
printf("compiled by CLANG %s\n", __VERSION__);
|
||||
@@ -664,6 +664,12 @@ parse_command_line(int argc, char *argv[]) {
|
||||
LIBXML_DOTTED_VERSION);
|
||||
printf("linked to libxml2 version: %s\n",
|
||||
xmlParserVersion);
|
||||
#endif
|
||||
#ifdef HAVE_JSON
|
||||
printf("compiled with libjson-c version: %s\n",
|
||||
JSON_C_VERSION);
|
||||
printf("linked to libjson-c version: %s\n",
|
||||
json_c_version());
|
||||
#endif
|
||||
exit(0);
|
||||
case 'x':
|
||||
@@ -992,12 +998,18 @@ setup(void) {
|
||||
isc_result_totext(result));
|
||||
|
||||
isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
|
||||
ISC_LOG_NOTICE, "starting %s %s%s", ns_g_product,
|
||||
ns_g_version, saved_command_line);
|
||||
ISC_LOG_NOTICE, "starting %s %s%s%s <id:%s>",
|
||||
ns_g_product, ns_g_version,
|
||||
*ns_g_description ? " " : "", ns_g_description,
|
||||
ns_g_srcid);
|
||||
|
||||
isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
|
||||
ISC_LOG_NOTICE, "built with %s", ns_g_configargs);
|
||||
|
||||
isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
|
||||
ISC_LOG_NOTICE, "running as: %s%s",
|
||||
program_name, saved_command_line);
|
||||
|
||||
isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,
|
||||
ISC_LOG_NOTICE,
|
||||
"----------------------------------------------------");
|
||||
|
Reference in New Issue
Block a user