Build workaround for Python 2.4.x in RHEL 5.
[libguestfs.git] / src / generator.ml
index d2da8ec..1212a5a 100755 (executable)
@@ -9113,6 +9113,12 @@ and generate_python_c () =
 #define PY_SSIZE_T_CLEAN 1
 #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>