summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2021-09-12 09:18:26 +0000
committerwiz <wiz@pkgsrc.org>2021-09-12 09:18:26 +0000
commit8590fc067907e8b1d8e789c68d0a6eb0947a0f60 (patch)
treee3c2d6be69775ddc154ad69a872af755b1ece1ba
parent9c29864872970c28c73825663504cecddfcc0648 (diff)
downloadpkgsrc-8590fc067907e8b1d8e789c68d0a6eb0947a0f60.tar.gz
wget: remove unused patch after update
-rw-r--r--net/wget/patches/patch-lib_malloc_dynarray-skeleton.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/net/wget/patches/patch-lib_malloc_dynarray-skeleton.c b/net/wget/patches/patch-lib_malloc_dynarray-skeleton.c
deleted file mode 100644
index 9c2b88d3dbe..00000000000
--- a/net/wget/patches/patch-lib_malloc_dynarray-skeleton.c
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-lib_malloc_dynarray-skeleton.c,v 1.1 2021/01/14 16:31:00 schmonz Exp $
-
-Use the macro used elsewhere to fix build on at least macOS.
-
---- lib/malloc/dynarray-skeleton.c.orig 2021-01-14 16:23:44.000000000 +0000
-+++ lib/malloc/dynarray-skeleton.c
-@@ -192,6 +192,10 @@ DYNARRAY_NAME (free__array__) (struct DY
-
- /* Initialize a dynamic array object. This must be called before any
- use of the object. */
-+#ifdef __nonnull
-+#undef __nonnull
-+#define __nonnull(params) _GL_ARG_NONNULL(params)
-+#endif
- __nonnull ((1))
- static void
- DYNARRAY_NAME (init) (struct DYNARRAY_STRUCT *list)