mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
To build on windows, the manual editing of the python_nt.rc file to
change the version number is no longer required. Instead, a make_versioninfo.exe is compiled, which spits out an include file for python_nt.rc. Will backport to 2.3
This commit is contained in:
parent
b97f0b7654
commit
13dbabe46e
5 changed files with 162 additions and 34 deletions
33
PC/make_versioninfo.c
Normal file
33
PC/make_versioninfo.c
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#include <stdio.h>
|
||||
#include "patchlevel.h"
|
||||
/*
|
||||
* This program prints out an include file containing fields required to build
|
||||
* the version info resource of pythonxx.dll because the resource compiler
|
||||
* cannot do the arithmetic.
|
||||
*/
|
||||
/*
|
||||
* FIELD3 is the third field of the version number.
|
||||
* This is what we'd like FIELD3 to be:
|
||||
*
|
||||
* #define FIELD3 (PY_MICRO_VERSION*1000 + PY_RELEASE_LEVEL*10 + PY_RELEASE_SERIAL)
|
||||
*
|
||||
* but that neither gives an error nor comes anywhere close to working.
|
||||
*
|
||||
* For 2.4a0,
|
||||
* PY_MICRO_VERSION = 0
|
||||
* PY_RELEASE_LEVEL = 'alpha' = 0xa
|
||||
* PY_RELEASE_SERIAL = 0
|
||||
*
|
||||
* gives FIELD3 = 0*1000 + 10*10 + 0 = 100
|
||||
*/
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
printf("/* This file created by make_versioninfo.exe */\n");
|
||||
printf("#define FIELD3 %d\n",
|
||||
PY_MICRO_VERSION*1000 + PY_RELEASE_LEVEL*10 + PY_RELEASE_SERIAL);
|
||||
printf("#define MS_DLL_ID \"%d.%d\"\n",
|
||||
PY_MAJOR_VERSION, PY_MINOR_VERSION);
|
||||
printf("#define PYTHON_DLL_NAME \"python%d%d.dll\"\n",
|
||||
PY_MAJOR_VERSION, PY_MINOR_VERSION);
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue