cpython/Mac/Resources/version.r
Jack Jansen d2d2b20e15 Pythonpath converted to Rez source, and vers resource removed from
bundle to its own Rez source file. With these changes various resources
are all set automatically from .h files.
1999-01-29 16:15:52 +00:00

31 lines
610 B
R

/*
** Create the 'vers' version resource from information in the
** Python include files.
*/
#include "Types.r"
#include "patchlevel.h"
/* Invent the Mac version from the Python version */
#if PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_ALPHA
#define V_RELEASE alpha
#endif
#if PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_BETA
#define V_RELEASE beta
#endif
#ifndef V_RELEASE
#define V_RELEASE final
#endif
resource 'vers' (1) {
PY_MAJOR_VERSION,
(PY_MINOR_VERSION<<4) | (PY_MICRO_VERSION),
V_RELEASE,
PY_RELEASE_SERIAL,
0,
PY_VERSION,
$$Format("%s, © Stichting Mathematisch Centrum %s",
PY_VERSION, $$Date)
};