]> tinc-vpn.org Git - tinc/blobdiff - src/version.c
Replace bare if statements with AS_IF in configure.ac.
[tinc] / src / version.c
index fc62c8a399f5d5d64646a7de8a197edf7b493dd1..325a6f09d8370eeeca958abe0abccc911fa58bf3 100644 (file)
 */
 
 #include "version.h"
+#include "version_git.h"
+#include "../config.h"
 
 /* This file is always rebuilt (even if there are no changes) so that the following is updated */
 const char* const BUILD_DATE = __DATE__;
 const char* const BUILD_TIME = __TIME__;
+#ifdef GIT_DESCRIPTION
+const char* const BUILD_VERSION = GIT_DESCRIPTION;
+#else
+const char* const BUILD_VERSION = VERSION;
+#endif