>From 39c08b8b1c3d4a7402c0174cc6e3b077f5316a02 Mon Sep 17 00:00:00 2001 From: Alessio Vanni Date: Tue, 6 Aug 2019 19:36:01 +0200 Subject: [PATCH] Add version string to GNUNET_OS_ProjectData --- src/include/gnunet_os_lib.h | 4 ++++ src/util/Makefile.am | 2 +- src/util/os_installation.c | 1 + src/util/program.c | 7 ++++--- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h index 6eb4ce5eb..41c75e513 100644 --- a/src/include/gnunet_os_lib.h +++ b/src/include/gnunet_os_lib.h @@ -267,6 +267,10 @@ struct GNUNET_OS_ProjectData */ const char *user_config_file; + /** + * String identifying the current project version. + */ + const char *version; }; diff --git a/src/util/Makefile.am b/src/util/Makefile.am index fe5cc6e72..647f09224 100644 --- a/src/util/Makefile.am +++ b/src/util/Makefile.am @@ -161,7 +161,7 @@ libgnunetutil_la_LIBADD = \ libgnunetutil_la_LDFLAGS = \ $(GN_LIB_LDFLAGS) \ - -version-info 13:1:0 + -version-info 13:2:0 libgnunetutil_taler_wallet_la_SOURCES = \ common_allocation.c \ diff --git a/src/util/os_installation.c b/src/util/os_installation.c index d2ce7fd9b..9dcfa5ef1 100644 --- a/src/util/os_installation.c +++ b/src/util/os_installation.c @@ -57,6 +57,7 @@ static const struct GNUNET_OS_ProjectData default_pd = { .libname = "libgnunetutil", .project_dirname = "gnunet", .binary_name = "gnunet-arm", + .version = PACKAGE_VERSION " " VCS_VERSION, .env_varname = "GNUNET_PREFIX", .base_config_varname = "GNUNET_BASE_CONFIG", .bug_email = "address@hidden", diff --git a/src/util/program.c b/src/util/program.c index 8a5b1c414..1462a03a8 100644 --- a/src/util/program.c +++ b/src/util/program.c @@ -161,12 +161,13 @@ GNUNET_PROGRAM_run2 (int argc, unsigned long long skew_variance; long long clock_offset; struct GNUNET_CONFIGURATION_Handle *cfg; + const struct GNUNET_OS_ProjectData *pd = GNUNET_OS_project_data_get (); struct GNUNET_GETOPT_CommandLineOption defoptions[] = {GNUNET_GETOPT_option_cfgfile (&cc.cfgfile), GNUNET_GETOPT_option_help (binaryHelp), GNUNET_GETOPT_option_loglevel (&loglev), GNUNET_GETOPT_option_logfile (&logfile), - GNUNET_GETOPT_option_version (PACKAGE_VERSION " " VCS_VERSION)}; + GNUNET_GETOPT_option_version (pd->version)}; struct GNUNET_GETOPT_CommandLineOption *allopts; const char *gargs; char *lpfx; @@ -231,9 +232,9 @@ GNUNET_PROGRAM_run2 (int argc, "%s%s%s", xdg, DIR_SEPARATOR_STR, - GNUNET_OS_project_data_get ()->config_file); + pd->config_file); else - cfg_fn = GNUNET_strdup (GNUNET_OS_project_data_get ()->user_config_file); + cfg_fn = GNUNET_strdup (pd->user_config_file); lpfx = GNUNET_strdup (binaryName); if (NULL != (spc = strstr (lpfx, " "))) *spc = '\0'; -- 2.21.0