]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-version.cc
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / lily / lily-version.cc
index 03f605394de9ca9937a71fc6b168b2e350c8dec8..f84730450fc40530b0e2b643cbc2301a7666e013 100644 (file)
@@ -1,16 +1,48 @@
+/*
+  This file is part of LilyPond, the GNU music typesetter.
+
+  Copyright (C) 1999--2015 Jan Nieuwenhuizen <janneke@gnu.org>
+
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "lily-version.hh"
+
+#include "config.hh"
 #include "version.hh"
-#include <stdio.h>
 
-static char *s = "GNU LilyPond " MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL MY_PATCH_LEVEL " #%d";
+string
+version_string ()
+{
+  string str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL;
+  string mpl ("." MY_PATCH_LEVEL);
+  if (mpl != ".")
+    str += mpl;
+  return str;
+}
 
-static const int build=
-#include ".build"
-;
+string
+gnu_lilypond_string ()
+{
+  string str = "GNU LilyPond";
+  return str;
+}
 
-char const * 
-lily_version_sz()
+string
+gnu_lilypond_version_string ()
 {
-    static char v[1024];
-    sprintf(v, s, build);
-    return v;
+  string str = gnu_lilypond_string () + " " + version_string ();
+  return str;
 }
+