Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2007-11-15 15:16:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-11-15 15:16:03 +0300
commitc6667c53e3134f06ce208094e67fb0081ef8d3e7 (patch)
tree6f7a1ce182622f723e873e2f689b5dcf6a9ae4c2 /source/creator
parent33e5520ab3e865be357e07afe42df8d6a90e249a (diff)
put the revision number in the splash screen (scons and make)
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/buildinfo.c1
-rw-r--r--source/creator/creator.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/source/creator/buildinfo.c b/source/creator/buildinfo.c
index feda7484f79..69d3b090086 100644
--- a/source/creator/buildinfo.c
+++ b/source/creator/buildinfo.c
@@ -38,6 +38,7 @@
#ifndef WIN32
char * build_date=BUILD_DATE;
char * build_time=BUILD_TIME;
+char * build_rev=BUILD_REV;
char * build_platform=BUILD_PLATFORM;
char * build_type=BUILD_TYPE;
#else
diff --git a/source/creator/creator.c b/source/creator/creator.c
index e42e52cdf33..8588dc9db9c 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -159,6 +159,7 @@ static void print_version(void)
printf ("Blender %d.%02d (sub %d) Build\n", G.version/100, G.version%100, BLENDER_SUBVERSION);
printf ("\tbuild date: %s\n", build_date);
printf ("\tbuild time: %s\n", build_time);
+ printf ("\tbuild revision: %s\n", build_rev);
printf ("\tbuild platform: %s\n", build_platform);
printf ("\tbuild type: %s\n", build_type);
#else