summaryrefslogtreecommitdiff
path: root/package/python3/patches/patch-Modules__io__iomodule_h
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-29 10:34:52 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-29 10:34:52 +0100
commit99c78117e05ac2795a27b6c3579c5cda02f87000 (patch)
tree65be7effe0ce237664d734ef06a3a1419094f252 /package/python3/patches/patch-Modules__io__iomodule_h
parentdbb81c6054d70e3ab797f7830837402a97e93db1 (diff)
parent5e905de49e0b3e1009bab32c62114043a14f286e (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/python3/patches/patch-Modules__io__iomodule_h')
-rw-r--r--package/python3/patches/patch-Modules__io__iomodule_h14
1 files changed, 0 insertions, 14 deletions
diff --git a/package/python3/patches/patch-Modules__io__iomodule_h b/package/python3/patches/patch-Modules__io__iomodule_h
deleted file mode 100644
index 64ac4ffaf..000000000
--- a/package/python3/patches/patch-Modules__io__iomodule_h
+++ /dev/null
@@ -1,14 +0,0 @@
---- Python-3.1.1.orig/Modules/_io/_iomodule.h 2009-06-12 04:07:12.000000000 +0200
-+++ Python-3.1.1/Modules/_io/_iomodule.h 2009-09-16 22:02:30.000000000 +0200
-@@ -99,7 +99,10 @@ typedef off_t Py_off_t;
- # define PY_OFF_T_MAX LONG_MAX
- # define PY_OFF_T_MIN LONG_MIN
- #else
--# error off_t does not match either size_t, long, or long long!
-+# define PyLong_AsOff_t PyLong_AsSsize_t
-+# define PyLong_FromOff_t PyLong_FromSsize_t
-+# define PY_OFF_T_MAX PY_SSIZE_T_MAX
-+# define PY_OFF_T_MIN PY_SSIZE_T_MIN
- #endif
-
- #endif