X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flily-version.cc;h=99e9b7df4c621d06a75d3a058936f05af13cc7e8;hb=067f6e7978add24a3367e564f1285139b0d01876;hp=4cf80766ebe5f731b2791e19c37e514e2cd1be23;hpb=75eebcb49e52d296b1da3e1074e0825d2c780db4;p=lilypond.git diff --git a/lily/lily-version.cc b/lily/lily-version.cc index 4cf80766eb..99e9b7df4c 100644 --- a/lily/lily-version.cc +++ b/lily/lily-version.cc @@ -1,9 +1,20 @@ /* - 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--2012 Jan Nieuwenhuizen - (c) 1999--2006 Jan Nieuwenhuizen + 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 . */ #include "lily-version.hh" @@ -11,27 +22,27 @@ #include "config.hh" #include "version.hh" -String +string version_string () { - String str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL; - String mpl ("." MY_PATCH_LEVEL); + string str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL; + string mpl ("." MY_PATCH_LEVEL); if (mpl != ".") str += mpl; return str; } -String +string gnu_lilypond_string () { - String str = "GNU LilyPond"; + string str = "GNU LilyPond"; return str; } -String +string gnu_lilypond_version_string () { - String str = gnu_lilypond_string () + " " + version_string (); + string str = gnu_lilypond_string () + " " + version_string (); return str; }