]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - version.h
Make all commands print git version and improve version string.
[paraslash.git] / version.h
index 3b839669bd610360b904f473e4e4e6156989bbd6..6309fd024c429ac1da6a195d8bc29760ff45a7ac 100644 (file)
--- a/version.h
+++ b/version.h
@@ -1,11 +1,15 @@
+/** \file version.h Macros for printing the version string. */
+
 #include "git-version.h"
-/** Version text used by various commands if -V switch was given. */
-#define VERSION_TEXT(prefix) "para_" prefix " " PACKAGE_VERSION \
-       " (" GIT_VERSION ": " CODENAME ")" "\n" \
-       "Copyright (C) 2011 Andre Noll\n" \
+
+#define VERSION_SINGLE_LINE(prefix) "para_" prefix \
+       " " GIT_VERSION " (" CODENAME ")"
+
+/** Version text printed by all executables if -V was given. */
+#define VERSION_TEXT(prefix) VERSION_SINGLE_LINE(prefix) "\n" \
+       "Copyright (C) 2013 Andre Noll\n" \
        "This is free software with ABSOLUTELY NO WARRANTY." \
        " See COPYING for details.\n" \
-       "Written by Andre Noll.\n" \
        "Report bugs to <maan@systemlinux.org>.\n"
 
 /** Print out \p VERSION_TEXT and exit if version flag was given. */