summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2009-10-16 22:23:44 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2009-10-16 22:23:44 +0000
commit1e7109669843cc91f20bd79cd2bb25a1b636700e (patch)
treed454bc4a8fd84aca8647a886c8b38909e01f14d5 /dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch
parentx86 stable, bug #281427 (diff)
downloadgentoo-2-1e7109669843cc91f20bd79cd2bb25a1b636700e.tar.gz
gentoo-2-1e7109669843cc91f20bd79cd2bb25a1b636700e.tar.bz2
gentoo-2-1e7109669843cc91f20bd79cd2bb25a1b636700e.zip
Removed older version, closing #285198
(Portage version: 2.2_rc46/cvs/Linux x86_64)
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) {