} else if (!strcmp(*argv, "-6")) {
family = IPADDR_INET6;
} else if (!strcmp("-v", *argv) || !strcmp("--version",*argv)) {
- printf("chronyc (chrony) version %s\n", CHRONY_VERSION);
+ printf("chronyc (chrony) version %s (%s)\n", CHRONY_VERSION, CHRONYC_FEATURES);
exit(0);
} else if (!strncmp(*argv, "-", 1)) {
fprintf(stderr, "Usage : %s [-h <hostname>] [-p <port-number>] [-n] [-4|-6] [-m] [-a] [-f <file>]] [command]\n", progname);
pkg-config $@ 2> /dev/null
}
#}}}
+#{{{ get_features
+get_features () {
+ ff=1
+ for f; do
+ if [ "$ff" = "0" ]; then
+ echo -n " "
+ fi
+ if grep "define FEAT_$f" config.h > /dev/null; then
+ echo -n "+$f"
+ else
+ echo -n "-$f"
+ fi
+ ff=0
+ done
+}
+#}}}
# ======================================================================
add_def DEFAULT_USER "\"$default_user\""
add_def MAIL_PROGRAM "\"$mail_program\""
+common_features="`get_features ASYNCDNS IPV6 SECHASH`"
+chronyc_features="`get_features READLINE`"
+chronyd_features="`get_features CMDMON NTP REFCLOCK RTC PRIVDROP DEBUG`"
+add_def CHRONYC_FEATURES "\"$chronyc_features $common_features\""
+add_def CHRONYD_FEATURES "\"$chronyd_features $common_features\""
+echo "Features : $chronyd_features $chronyc_features $common_features"
+
if [ -f version.txt ]; then
add_def CHRONY_VERSION "\"`cat version.txt`\""
else
do_init_rtc = 1;
} else if (!strcmp("-v", *argv) || !strcmp("--version",*argv)) {
/* This write to the terminal is OK, it comes before we turn into a daemon */
- printf("chronyd (chrony) version %s\n", CHRONY_VERSION);
+ printf("chronyd (chrony) version %s (%s)\n", CHRONY_VERSION, CHRONYD_FEATURES);
exit(0);
} else if (!strcmp("-n", *argv)) {
nofork = 1;
LOG_SetDebugLevel(debug);
- LOG(LOGS_INFO, LOGF_Main, "chronyd version %s starting", CHRONY_VERSION);
+ LOG(LOGS_INFO, LOGF_Main, "chronyd version %s starting (%s)",
+ CHRONY_VERSION, CHRONYD_FEATURES);
DNS_SetAddressFamily(address_family);