]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-version.cc
Run grand-replace (issue 3765)
[lilypond.git] / lily / lily-version.cc
index 081504324abffcfff379c2167e32f24029b99fce..ef27bc36260548dc85f93c44636c49e847ec643b 100644 (file)
@@ -1,35 +1,48 @@
 /*
-  lily-version.cc -- implement version strings
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 1999--2014 Jan Nieuwenhuizen <janneke@gnu.org>
 
-  (c)  1999--2001 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 "config.h"
-#include "version.hh"
 #include "lily-version.hh"
 
-#define VERSION MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL "." MY_PATCH_LEVEL
+#include "config.hh"
+#include "version.hh"
 
-String
-version_str ()
+string
+version_string ()
 {
-  String str = VERSION;
+  string str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL;
+  string mpl ("." MY_PATCH_LEVEL);
+  if (mpl != ".")
+    str += mpl;
   return str;
 }
 
-String 
-gnu_lilypond_str ()
+string
+gnu_lilypond_string ()
 {
-  String str = "GNU LilyPond";
+  string str = "GNU LilyPond";
   return str;
 }
 
-String 
-gnu_lilypond_version_str ()
+string
+gnu_lilypond_version_string ()
 {
-  String str = gnu_lilypond_str () + " " + version_str ();
+  string str = gnu_lilypond_string () + " " + version_string ();
   return str;
 }