summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri.staessens@ugent.be>2018-01-10 15:38:08 +0100
committerSander Vrijders <sander.vrijders@ugent.be>2018-01-10 18:38:25 +0100
commitb71c2cc9938eee649d6b4a787d4c4bebe849d6e9 (patch)
tree86cc8cc15f8ee3411bb1164aa8f859bef6ffd206 /src
parentd501c9f496b3c8c5cfa870830108ce104174bf25 (diff)
downloadouroboros-b71c2cc9938eee649d6b4a787d4c4bebe849d6e9.tar.gz
ouroboros-b71c2cc9938eee649d6b4a787d4c4bebe849d6e9.zip
build: Add patchlevel to version
This adds a patchlevel to the Ouroboros version. Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be> Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Diffstat (limited to 'src')
-rw-r--r--src/irmd/config.h.in1
-rw-r--r--src/irmd/main.c5
2 files changed, 4 insertions, 2 deletions
diff --git a/src/irmd/config.h.in b/src/irmd/config.h.in
index 8ed66004..2a1a6d6a 100644
--- a/src/irmd/config.h.in
+++ b/src/irmd/config.h.in
@@ -30,6 +30,7 @@
#define OUROBOROS_VERSION_MAJOR @PACKAGE_VERSION_MAJOR@
#define OUROBOROS_VERSION_MINOR @PACKAGE_VERSION_MINOR@
+#define OUROBOROS_VERSION_PATCH @PACKAGE_VERSION_PATCH@
#define PTHREAD_COND_CLOCK @PTHREAD_COND_CLOCK@
diff --git a/src/irmd/main.c b/src/irmd/main.c
index 96c30b4a..f109d5e2 100644
--- a/src/irmd/main.c
+++ b/src/irmd/main.c
@@ -2298,9 +2298,10 @@ int main(int argc,
argc--;
argv++;
} else if (strcmp(*argv, "--version") == 0) {
- printf("Ouroboros version %d.%d\n",
+ printf("Ouroboros version %d.%d.%d\n",
OUROBOROS_VERSION_MAJOR,
- OUROBOROS_VERSION_MINOR);
+ OUROBOROS_VERSION_MINOR,
+ OUROBOROS_VERSION_PATCH);
exit(EXIT_SUCCESS);
} else {
usage();