X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flily-version.cc;h=f84730450fc40530b0e2b643cbc2301a7666e013;hb=6465569a518aa2bf3ce93e5934a58eec2e6a69b1;hp=df773fa7ccdb93c51859c6523348dc4023c84112;hpb=95246e47228482fbd2a99ec2d7f5d52b35cb545a;p=lilypond.git diff --git a/lily/lily-version.cc b/lily/lily-version.cc index df773fa7cc..f84730450f 100644 --- a/lily/lily-version.cc +++ b/lily/lily-version.cc @@ -1,24 +1,48 @@ -#include "version.hh" -#include +/* + This file is part of LilyPond, the GNU music typesetter. + + Copyright (C) 1999--2015 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. -#define VERSION_SZ MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL MY_PATCH_LEVEL -static char *s = "GNU LilyPond " VERSION_SZ " #%d"; + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . +*/ -static const int build= -#include ".build" -; +#include "lily-version.hh" + +#include "config.hh" +#include "version.hh" -char const * -lily_version_number_sz() +string +version_string () { - return VERSION_SZ; + string str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL; + string mpl ("." MY_PATCH_LEVEL); + if (mpl != ".") + str += mpl; + return str; } -char const * -lily_version_sz() +string +gnu_lilypond_string () { - static char v[1024]; // ugh - sprintf (v, s, build); - return v; + string str = "GNU LilyPond"; + return str; } + +string +gnu_lilypond_version_string () +{ + string str = gnu_lilypond_string () + " " + version_string (); + return str; +} +