[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [44712] trunk/blender/source/blender: remove printing versions in makesdna/ makesrna - this used svn ID property which isnt set in the files anymore.

Campbell Barton ideasman42 at gmail.com
Wed Mar 7 19:27:25 CET 2012


Revision: 44712
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=44712
Author:   campbellbarton
Date:     2012-03-07 18:27:12 +0000 (Wed, 07 Mar 2012)
Log Message:
-----------
remove printing versions in makesdna/makesrna - this used svn ID property which isnt set in the files anymore.

Modified Paths:
--------------
    trunk/blender/source/blender/makesdna/intern/makesdna.c
    trunk/blender/source/blender/makesrna/intern/makesrna.c

Modified: trunk/blender/source/blender/makesdna/intern/makesdna.c
===================================================================
--- trunk/blender/source/blender/makesdna/intern/makesdna.c	2012-03-07 17:45:40 UTC (rev 44711)
+++ trunk/blender/source/blender/makesdna/intern/makesdna.c	2012-03-07 18:27:12 UTC (rev 44712)
@@ -46,10 +46,8 @@
  * 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>
 #include <stdio.h>
@@ -927,7 +925,6 @@
 	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! */

Modified: trunk/blender/source/blender/makesrna/intern/makesrna.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/makesrna.c	2012-03-07 17:45:40 UTC (rev 44711)
+++ trunk/blender/source/blender/makesrna/intern/makesrna.c	2012-03-07 18:27:12 UTC (rev 44712)
@@ -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 @@
 		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]);
 	}




More information about the Bf-blender-cvs mailing list