diff options
author | tsarna <tsarna> | 1999-04-14 05:00:11 +0000 |
---|---|---|
committer | tsarna <tsarna> | 1999-04-14 05:00:11 +0000 |
commit | ec18363cb15f03386cdeb13f02de23042d3638f2 (patch) | |
tree | 53131a9f8a8c26ef8a0c63570e29ab03b294fe3a /lang | |
parent | 1f901df84d9f941a4af8a0b4adca63ce762b9038 (diff) | |
download | pkgsrc-ec18363cb15f03386cdeb13f02de23042d3638f2.tar.gz |
Deal with our unusually long compiler version string.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python/patches/patch-aa | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/python/patches/patch-aa b/lang/python/patches/patch-aa new file mode 100644 index 00000000000..b5981df0e39 --- /dev/null +++ b/lang/python/patches/patch-aa @@ -0,0 +1,11 @@ +--- Python/getversion.c.orig Tue Apr 13 23:58:15 1999 ++++ Python/getversion.c Tue Apr 13 23:58:22 1999 +@@ -39,7 +39,7 @@ + Py_GetVersion() + { + static char version[100]; +- sprintf(version, "%.10s (%.40s) %.40s", PY_VERSION, ++ sprintf(version, "%.10s (%.40s) %.50s", PY_VERSION, + Py_GetBuildInfo(), Py_GetCompiler()); + return version; + } |