diff options
author | tsarna <tsarna@pkgsrc.org> | 1999-04-14 05:00:11 +0000 |
---|---|---|
committer | tsarna <tsarna@pkgsrc.org> | 1999-04-14 05:00:11 +0000 |
commit | aa362204592e4c3843c439befa89c4beaa033174 (patch) | |
tree | 53131a9f8a8c26ef8a0c63570e29ab03b294fe3a /lang/python | |
parent | 15fbca3ca1afe744e8d6c5b75d2f463c863e0a80 (diff) | |
download | pkgsrc-aa362204592e4c3843c439befa89c4beaa033174.tar.gz |
Deal with our unusually long compiler version string.
Diffstat (limited to 'lang/python')
-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; + } |