summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrice Goglin <bgoglin@debian.org>2007-08-07 10:18:07 +0200
committerBrice Goglin <bgoglin@debian.org>2007-08-07 10:18:07 +0200
commitba3948fcd33f8497cca9c8c72bc777b92d50858d (patch)
tree6114c7b4a04de141f69de4f66f6efb7a4b0bb76a /src
parent1e341ca5f80f603e0d139bf464ba0143249f32cb (diff)
Define VERSION* using PACKAGE_VERSION*
Diffstat (limited to 'src')
-rw-r--r--src/ark.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ark.h b/src/ark.h
index 0219c5c..eed1553 100644
--- a/src/ark.h
+++ b/src/ark.h
@@ -55,10 +55,10 @@ typedef struct _ARKRec {
#define DRIVER_NAME "ark"
-#define DRIVER_VERSION "0.6.0"
-#define VERSION_MAJOR 0
-#define VERSION_MINOR 6
-#define PATCHLEVEL 0
+#define DRIVER_VERSION PACKAGE_VERSION
+#define VERSION_MAJOR PACKAGE_VERSION_MAJOR
+#define VERSION_MINOR PACKAGE_VERSION_MINOR
+#define PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL
#define ARK_VERSION ((VERSION_MAJOR << 24) | \
(VERSION_MINOR << 16) | \
PATCHLEVEL)