summaryrefslogtreecommitdiff
path: root/PC/python_nt.rc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2003-10-10 16:57:45 +0000
committerThomas Heller <theller@ctypes.org>2003-10-10 16:57:45 +0000
commit0149d94163f24582e3d3d42d37bd303933234766 (patch)
tree9a2021837e164208a86e72d139cfb41f91348555 /PC/python_nt.rc
parent52af617c77d28ac65bf08606066468bea03c5a58 (diff)
downloadcpython-0149d94163f24582e3d3d42d37bd303933234766.tar.gz
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
Diffstat (limited to 'PC/python_nt.rc')
-rw-r--r--PC/python_nt.rc38
1 files changed, 4 insertions, 34 deletions
diff --git a/PC/python_nt.rc b/PC/python_nt.rc
index 8b3858bce6..3cdc93c019 100644
--- a/PC/python_nt.rc
+++ b/PC/python_nt.rc
@@ -6,42 +6,12 @@
#define MS_WINDOWS
#include "modsupport.h"
#include "patchlevel.h"
-
-/* Across releases, change:
- * MS_DLL_ID if the minor version number changes.
- * PYTHON_DLL_NAME ditto.
- * MS_DLL_ID must match PY_VERSION in the Windows install script.
- */
-#define MS_DLL_ID "2.4"
-
-#ifndef PYTHON_DLL_NAME
-#define PYTHON_DLL_NAME "python24.dll"
+#ifdef _DEBUG
+# include "pythonnt_rc_d.h"
+#else
+# include "pythonnt_rc.h"
#endif
-/* Nothing below this should need to be changed except for copyright
- * notices, company name, and FIELD3. Unfortunately, all attempts
- * to get the resource compiler to do arithmetic in macros have
- * failed miserably -- it gives syntax errors, ignores operators,
- * or does stuff that's simply bizarre.
- */
-
-
-/* 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. The
- * following comment and #define are output from PCbuild\field3.py:
- *
- * For 2.4a0,
- * PY_MICRO_VERSION = 0
- * PY_RELEASE_LEVEL = 'alpha' = 0xa
- * PY_RELEASE_SERIAL = 0
- *
- * and 0*1000 + 10*10 + 0 = 100
- */
-#define FIELD3 100
-
/* e.g., 2.1a2
* PY_VERSION comes from patchevel.h
*/