Differences From Artifact [c647b15dfc]:
- File src/mkversion.c — part of check-in [ae85ba156c] at 2012-08-30 02:04:19 on branch trunk — Simplify the mkversion changes from the previous commit. (user: mistachkin size: 1927) [more...]
To Artifact [7330febca0]:
- File src/mkversion.c — part of check-in [b065aff4b9] at 2014-02-15 03:03:31 on branch trunk — Further improve reporting of the compiler version information. (user: mistachkin size: 2064)
| ︙ | ︙ | |||
67 68 69 70 71 72 73 74 75 |
z[0] = '\0';
break;
}
}
printf("#define RELEASE_RESOURCE_VERSION %s", vx);
while( d<3 ){ printf(",0"); d++; }
printf("\n");
return 0;
}
| > > > > > | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
z[0] = '\0';
break;
}
}
printf("#define RELEASE_RESOURCE_VERSION %s", vx);
while( d<3 ){ printf(",0"); d++; }
printf("\n");
#if defined(_MSC_VER)
d = _MSC_VER / 100;
x = _MSC_VER % 100;
printf("#define COMPILER_VERSION \"%d.%02d\"\n", d, x);
#endif
return 0;
}
|