version.c: Update copyright year to range 2002-2015.
[paraslash.git] / version.c
index d2df4818f4cb240482e5bf48028c5d5d5fd88368..695675613398c1ae52867bbd3a04c27bc81145db 100644 (file)
--- a/version.c
+++ b/version.c
@@ -1,33 +1,28 @@
-#include "para.h"
+/*
+ * Copyright (C) 2013 Andre Noll <maan@tuebingen.mpg.de>
+ *
+ * Licensed under the GPL v2. For licencing details see COPYING.
+ */
 
-/** \file version.h Macros for printing the version string. */
+/** \file version.c Some helpers for printing version and copyright strings. */
 
+#include "para.h"
+#include "version.h"
 #include "git-version.h"
 
-/**
- * Get the raw git version string
- *
- * \return The string generated by the GIT-VERSION-GEN script. It is passed
- * as a preprocessor define during compilation.
- */
-const char *version_git(void)
-{
-       return GIT_VERSION;
-}
-
 /**
  * Get the version string for an executable.
  *
  * \param pfx The program name (without the leading "para_").
  *
- * \return A statically allocated string which contains the program name, the
- * git version and the codename. It must not be freed by the caller.
+ * \return A statically allocated string which contains the program name and
+ * the git version. It must not be freed by the caller.
  */
 const char *version_single_line(const char *pfx)
 {
        static char buf[100];
        snprintf(buf, sizeof(buf) - 1,
-               "para_%s " GIT_VERSION " (" CODENAME ")", pfx);
+               "para_%s " GIT_VERSION, pfx);
        return buf;
 }
 
@@ -48,11 +43,13 @@ const char *version_text(const char *pfx)
        static char buf[512];
 
        snprintf(buf, sizeof(buf) - 1, "%s\n"
-               "built: " BUILD_DATE ", " UNAME_RS ", " CC_VERSION "\n"
-               "Copyright (C) 2013 Andre Noll\n"
+               "Copyright (C) 2002-2015 Andre Noll\n"
                "This is free software with ABSOLUTELY NO WARRANTY."
                " See COPYING for details.\n"
-               "Report bugs to <maan@systemlinux.org>.\n",
+               "Report bugs to <maan@tuebingen.mpg.de>.\n"
+               "build date: " BUILD_DATE ",\n"
+               "build system: " UNAME_RS ",\n"
+               "compiler: " CC_VERSION ".\n",
                version_single_line(pfx)
        );
        return buf;