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>2012-03-07 22:27:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-07 22:27:12 +0400
commit0c051946390f38d564c70d91eb08af7d9a38cf16 (patch)
treed5784f82f7bfb8125a22841c34752af3d33634ba
parentc69e4ef8620c95276edbfa78c5c4fb261b222dd6 (diff)
remove printing versions in makesdna/makesrna - this used svn ID property which isnt set in the files anymore.
-rw-r--r--source/blender/makesdna/intern/makesdna.c5
-rw-r--r--source/blender/makesrna/intern/makesrna.c4
2 files changed, 2 insertions, 7 deletions
diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index 37148bb7cd7..77f3e8084dd 100644
--- a/source/blender/makesdna/intern/makesdna.c
+++ b/source/blender/makesdna/intern/makesdna.c
@@ -46,9 +46,7 @@
* There is a facility to get verbose output from sdna. Search for
* \ref debugSDNA. This int can be set to 0 (no output) to some int. Higher
* numbers give more output.
- * */
-
-#define DNA_VERSION_DATE "FIXME-DNA_VERSION_DATE"
+ */
#include <string.h>
#include <stdlib.h>
@@ -927,7 +925,6 @@ static int make_structDNA(char *baseDirectory, FILE *file)
if (debugSDNA > -1) {
fflush(stdout);
printf("Running makesdna at debug level %d\n", debugSDNA);
- printf("\tProgram version: %s\n", DNA_VERSION_DATE);
}
/* the longest known struct is 50k, so we assume 100k is sufficent! */
diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c
index 5e2669d3227..8f0184fcce7 100644
--- a/source/blender/makesrna/intern/makesrna.c
+++ b/source/blender/makesrna/intern/makesrna.c
@@ -40,8 +40,6 @@
#include "rna_internal.h"
-#define RNA_VERSION_DATE "FIXME-RNA_VERSION_DATE"
-
#ifdef _WIN32
# ifndef snprintf
# define snprintf _snprintf
@@ -2953,7 +2951,7 @@ int main(int argc, char **argv)
return_status = 1;
}
else {
- fprintf(stderr, "Running makesrna, program versions %s\n", RNA_VERSION_DATE);
+ fprintf(stderr, "Running makesrna");
makesrna_path = argv[0];
return_status = rna_preprocess(argv[1]);
}