Build workaround for Python 2.4.x in RHEL 5.
authorRichard W.M. Jones <rjones@redhat.com>
Fri, 21 May 2010 17:20:28 +0000 (18:20 +0100)
committerRichard Jones <rjones@redhat.com>
Tue, 17 Aug 2010 17:54:26 +0000 (18:54 +0100)
See:
http://www.python.org/dev/peps/pep-0353/#conversion-guidelines
(cherry picked from commit 012b1c71f4eda3ae779da51d7d81c199d90f667d)

src/generator.ml

index 116fb01..4b7313b 100755 (executable)
@@ -8784,6 +8784,12 @@ and generate_python_c () =
   pr "\
 #include <Python.h>
 
+#if PY_VERSION_HEX < 0x02050000
+typedef int Py_ssize_t;
+#define PY_SSIZE_T_MAX INT_MAX
+#define PY_SSIZE_T_MIN INT_MIN
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <assert.h>