summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gnustep-libs/sope/files/sope-r1660-NSZoneMallocAtomic.patch')
-rw-r--r--gnustep-libs/sope/files/sope-r1660-NSZoneMallocAtomic.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/gnustep-libs/sope/files/sope-r1660-NSZoneMallocAtomic.patch b/gnustep-libs/sope/files/sope-r1660-NSZoneMallocAtomic.patch
deleted file mode 100644
index 8c33cc3..0000000
--- a/gnustep-libs/sope/files/sope-r1660-NSZoneMallocAtomic.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Index: sope-core/NGStreams/NGStream+serialization.m
-===================================================================
---- sope-core/NGStreams/NGStream+serialization.m (revision 1632)
-+++ sope-core/NGStreams/NGStream+serialization.m (working copy)
-@@ -282,7 +282,7 @@
- else {
- char *result = NULL;
-
--#if NeXT_Foundation_LIBRARY
-+#if NeXT_Foundation_LIBRARY || GNUSTEP_BASE_LIBRARY
- result = NSZoneMalloc(NULL, len + 1);
- #else
- result = NSZoneMallocAtomic(NULL, len + 1);
-Index: sope-core/NGStreams/NGGZipStream.m
-===================================================================
---- sope-core/NGStreams/NGGZipStream.m (revision 1632)
-+++ sope-core/NGStreams/NGGZipStream.m (working copy)
-@@ -52,7 +52,7 @@
- @"invalid compression level %i (0-9)", _level);
-
- self->outBufLen = 2048;
--#if GNU_RUNTIME
-+#if GNU_RUNTIME && !GNUSTEP_BASE_LIBRARY
- self->outBuf = NSZoneMallocAtomic([self zone], self->outBufLen);
- self->outp = NSZoneMallocAtomic([self zone], sizeof(z_stream));
- #else
-Index: sope-core/NGStreams/NGCharBuffer.m
-===================================================================
---- sope-core/NGStreams/NGCharBuffer.m (revision 1632)
-+++ sope-core/NGStreams/NGCharBuffer.m (working copy)
-@@ -46,7 +46,7 @@
- // Find first power of 2 >= to requested size
- for (size = 2; size < _la; size *=2);
-
--#if NeXT_Foundation_LIBRARY
-+#if NeXT_Foundation_LIBRARY || GNUSTEP_BASE_LIBRARY
- self->la = NSZoneMalloc([self zone], sizeof(LA_NGCharBuffer) * size);
- #else
- self->la = NSZoneMallocAtomic([self zone],