]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/version.cc
release: 1.1.18
[lilypond.git] / lily / version.cc
index b2a57def4ae1d04f2ca871ae32d1265eb1a6c060..787f001831c50b839e5a2a93ee389a6be989f833 100644 (file)
@@ -1,11 +1,11 @@
-#include "version.hh"
-#include "fversion.hh"
+#include "main.hh"
+#include "string.hh"
 
-static char *s = "LilyPond " VERSIONSTR    "/FlowerLib " FVERSIONSTR
-". Compile: "   __DATE__ ", " __TIME__ " (" COMPILER ")\n";
+char const * lily_version_sz();
 
-const char *
-get_version()
+String 
+get_version_str()
 {
-   return s;
+  String s = lily_version_sz();
+  return s;
 }