summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch')
-rw-r--r--dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch b/dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch
deleted file mode 100644
index 0d0232fd7841..000000000000
--- a/dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- swig/Fl_Bitmap.i.orig 2007-12-09 15:34:18.633043673 +0000
-+++ swig/Fl_Bitmap.i 2007-12-09 15:34:56.675211572 +0000
-@@ -13,7 +13,7 @@
-
- %typemap(in) const uchar *bits {
- /* Check if the input support the buffer protocol */
-- int size_buffer;
-+ Py_ssize_t size_buffer;
- const void * buffer;
- int failure = PyObject_AsReadBuffer($input,&buffer,&size_buffer);
- if (!failure) {
---- swig/fl_draw.i.orig 2007-12-09 15:34:37.166099811 +0000
-+++ swig/fl_draw.i 2007-12-09 15:35:15.200267255 +0000
-@@ -9,7 +9,7 @@
-
- %typemap(in) const uchar * {
- /* Check if the input support the buffer protocol */
-- int size_buffer;
-+ Py_ssize_t size_buffer;
- const void * buffer;
- int failure = PyObject_AsReadBuffer($input,&buffer,&size_buffer);
- if (!failure) {
---- swig/Fl_Image.i.orig 2007-12-09 15:34:30.577724361 +0000
-+++ swig/Fl_Image.i 2007-12-09 15:35:30.549141938 +0000
-@@ -23,7 +23,7 @@
-
- %typemap(in) const uchar *bits {
- /* Check if the input support the buffer protocol */
-- int size_buffer;
-+ Py_ssize_t size_buffer;
- const void * buffer;
- int failure = PyObject_AsReadBuffer($input,&buffer,&size_buffer);
- if (!failure) {