diff options
Diffstat (limited to 'lang/python22/patches/patch-na')
-rw-r--r-- | lang/python22/patches/patch-na | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lang/python22/patches/patch-na b/lang/python22/patches/patch-na deleted file mode 100644 index 8aee908268a..00000000000 --- a/lang/python22/patches/patch-na +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-na,v 1.1 2007/10/10 11:24:11 rillig Exp $ - ---- Modules/mmapmodule.c.orig 2003-02-07 20:46:44.000000000 +0100 -+++ Modules/mmapmodule.c 2007-10-10 13:19:54.000000000 +0200 -@@ -428,6 +428,10 @@ mmap_resize_method(mmap_object *self, - } else { - void *newmap; - -+#if defined(__NetBSD__) -+# define mremap(a, b, c, d) (mremap)((a), (b), NULL, (c), (d)) -+#endif -+ - #ifdef MREMAP_MAYMOVE - newmap = mremap(self->data, self->size, new_size, MREMAP_MAYMOVE); - #else |