]> wimlib.net Git - wimlib/commitdiff
Allow retrieving PACKAGE_VERSION from the library
authorEric Biggers <ebiggers3@gmail.com>
Sun, 21 Jan 2018 21:47:09 +0000 (13:47 -0800)
committerEric Biggers <ebiggers3@gmail.com>
Sun, 21 Jan 2018 21:47:09 +0000 (13:47 -0800)
Otherwise the output of 'wimlib-imagex --version' for beta versions
would be confusing.

include/wimlib.h
programs/imagex.c
src/wim.c

index 9966b524b23b7c983829dac0b527168d696ac167..047716c0338ea9887ca58f5b52127204b70457d1 100644 (file)
@@ -3273,6 +3273,16 @@ wimlib_get_image_property(const WIMStruct *wim, int image,
 extern uint32_t
 wimlib_get_version(void);
 
+/**
+ * @ingroup G_general
+ *
+ * Since wimlib v1.13.0: like wimlib_get_version(), but returns the full
+ * PACKAGE_VERSION string that was set at build time.  (This allows a beta
+ * release to be distinguished from an official release.)
+ */
+extern const wimlib_tchar *
+wimlib_get_version_string(void);
+
 /**
  * @ingroup G_wim_information
  *
index 28f0266356429b91879b6d1e59f421f435bcecf5..10f5455692af4753d9a17cd9eab800a58cbf9e17 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 /*
- * Copyright (C) 2012-2017 Eric Biggers
+ * Copyright (C) 2012-2018 Eric Biggers
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -4520,23 +4520,19 @@ static const tchar *get_cmd_string(int cmd, bool only_short_form)
 static void
 version(void)
 {
-       uint32_t vers = wimlib_get_version();
-
        static const tchar * const fmt =
        T(
-"wimlib-imagex " PACKAGE_VERSION " (using wimlib %u.%u.%u)\n"
-"Copyright (C) 2012-2017 Eric Biggers\n"
+"wimlib-imagex " PACKAGE_VERSION " (using wimlib %"TS")\n"
+"Copyright (C) 2012-2018 Eric Biggers\n"
 "License GPLv3+; GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n"
 "This is free software: you are free to change and redistribute it.\n"
 "There is NO WARRANTY, to the extent permitted by law.\n"
 "\n"
 "Report bugs to "PACKAGE_BUGREPORT".\n"
        );
-       tfprintf(stdout, fmt,
-                vers >> 20, (vers >> 10) & 0x3ff, vers & 0x3ff);
+       tfprintf(stdout, fmt, wimlib_get_version_string());
 }
 
-
 static void
 do_common_options(int *argc_p, tchar **argv, int cmd)
 {
index ec345a9322e0d51e5fb9af5e10eee1579e050033..ca40e53a47a303b4dbe3cb44e2172e2976e91da5 100644 (file)
--- a/src/wim.c
+++ b/src/wim.c
@@ -935,6 +935,12 @@ wimlib_get_version(void)
                WIMLIB_PATCH_VERSION;
 }
 
+WIMLIBAPI const tchar *
+wimlib_get_version_string(void)
+{
+       return T(PACKAGE_VERSION);
+}
+
 static bool lib_initialized = false;
 static pthread_mutex_t lib_initialization_mutex = PTHREAD_MUTEX_INITIALIZER;