summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2015-02-18 14:13:11 +0100
committerTobias Klauser <tklauser@distanz.ch>2015-02-18 14:13:11 +0100
commit083023711b5248c5511185e536679020b6696486 (patch)
tree10b1be43f9e551f136005b321853e03cb684de7c
parent2bab52017fb4901e9c642fab585f7169e6d11253 (diff)
llmnrd, llmnr-query: Add git id to version output
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r--Makefile3
-rw-r--r--llmnr-query.c5
-rw-r--r--llmnrd.c5
3 files changed, 8 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 3b06b95..84cd2cf 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@
# Copyright (C) 2014-2015 Tobias Klauser <tklauser@distanz.ch>
VERSION = 0.1-rc1
+GIT_VERSION = `git describe --always`
# llmnrd binary
D_P = llmnrd
@@ -20,7 +21,7 @@ INSTALL = install
CFLAGS ?= -W -Wall -O2
LDFLAGS ?=
-CFLAGS += -DVERSION_STRING=\"v$(VERSION)\"
+CFLAGS += -DVERSION_STRING=\"v$(VERSION)\" -DGIT_VERSION=\"$(GIT_VERSION)\"
ifeq ($(DEBUG), 1)
CFLAGS += -g -DDEBUG
diff --git a/llmnr-query.c b/llmnr-query.c
index e7dd2fa..3635a53 100644
--- a/llmnr-query.c
+++ b/llmnr-query.c
@@ -61,9 +61,10 @@ static void __noreturn usage_and_exit(int status)
static void __noreturn version_and_exit(void)
{
- fprintf(stdout, "llmnr-query %s\n"
+ fprintf(stdout, "llmnr-query %s (git id %s)\n"
"Copyright (C) 2015 Tobias Klauser <tklauser@distanz.ch>\n"
- "Licensed unter the GNU General Public License, version 2\n", VERSION_STRING);
+ "Licensed unter the GNU General Public License, version 2\n",
+ VERSION_STRING, GIT_VERSION);
exit(EXIT_SUCCESS);
}
diff --git a/llmnrd.c b/llmnrd.c
index 79a237d..ab3a003 100644
--- a/llmnrd.c
+++ b/llmnrd.c
@@ -62,9 +62,10 @@ static void __noreturn usage_and_exit(int status)
static void __noreturn version_and_exit(void)
{
- fprintf(stdout, "llmnrd %s\n"
+ fprintf(stdout, "llmnrd %s (git id %s)\n"
"Copyright (C) 2014-2015 Tobias Klauser <tklauser@distanz.ch>\n"
- "Licensed unter the GNU General Public License, version 2\n", VERSION_STRING);
+ "Licensed unter the GNU General Public License, version 2\n",
+ VERSION_STRING, GIT_VERSION);
exit(EXIT_SUCCESS);
}