summaryrefslogtreecommitdiff
path: root/psycopg/python.h
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2011-01-03 19:14:40 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2011-01-03 19:18:50 +0100
commitb276e3b05dee01396d7703cced6e3b75e05caec3 (patch)
tree30173af59655ee66ea51f119a9485f40339f2721 /psycopg/python.h
parent9eae66e8cf427484b9770f659a993389291b3b07 (diff)
downloadpsycopg2-b276e3b05dee01396d7703cced6e3b75e05caec3.tar.gz
Fixed compiling on Python versions before 2.6
Added a few macros not defined in Py 2.4. Don't know about 2.5.
Diffstat (limited to 'psycopg/python.h')
-rw-r--r--psycopg/python.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/psycopg/python.h b/psycopg/python.h
index 25dbd31..c3f9a0d 100644
--- a/psycopg/python.h
+++ b/psycopg/python.h
@@ -62,6 +62,11 @@
#define PyVarObject_HEAD_INIT(x,n) PyObject_HEAD_INIT(x) n,
#endif
+/* Missing at least in Python 2.4 */
+#ifndef Py_MEMCPY
+#define Py_MEMCPY memcpy
+#endif
+
/* FORMAT_CODE_PY_SSIZE_T is for Py_ssize_t: */
#define FORMAT_CODE_PY_SSIZE_T "%" PY_FORMAT_SIZE_T "d"