summaryrefslogtreecommitdiffstats
path: root/PC/make_versioninfo.c
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-07-18 04:58:01 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-07-18 04:58:01 (GMT)
commit5852fa3f7202899d62a1f1d75d922f718784df7a (patch)
tree60dce7ff6ba0ba87c59ded13b3b150401e477a88 /PC/make_versioninfo.c
parent25f9cf479f4bfa9174b2352f71aea35ec57aaeee (diff)
downloadcpython-5852fa3f7202899d62a1f1d75d922f718784df7a.zip
cpython-5852fa3f7202899d62a1f1d75d922f718784df7a.tar.gz
cpython-5852fa3f7202899d62a1f1d75d922f718784df7a.tar.bz2
Removes unused files from PC folder.
Diffstat (limited to 'PC/make_versioninfo.c')
-rw-r--r--PC/make_versioninfo.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/PC/make_versioninfo.c b/PC/make_versioninfo.c
deleted file mode 100644
index e969671..0000000
--- a/PC/make_versioninfo.c
+++ /dev/null
@@ -1,38 +0,0 @@
-#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("#ifndef _DEBUG\n");
- printf("#define PYTHON_DLL_NAME \"python%d%d.dll\"\n",
- PY_MAJOR_VERSION, PY_MINOR_VERSION);
- printf("#else\n");
- printf("#define PYTHON_DLL_NAME \"python%d%d_d.dll\"\n",
- PY_MAJOR_VERSION, PY_MINOR_VERSION);
- printf("#endif\n");
- return 0;
-}