summaryrefslogtreecommitdiff
path: root/archivers/gtar-base/patches/patch-ah
diff options
context:
space:
mode:
Diffstat (limited to 'archivers/gtar-base/patches/patch-ah')
-rw-r--r--archivers/gtar-base/patches/patch-ah21
1 files changed, 0 insertions, 21 deletions
diff --git a/archivers/gtar-base/patches/patch-ah b/archivers/gtar-base/patches/patch-ah
deleted file mode 100644
index bbabf1ccd77..00000000000
--- a/archivers/gtar-base/patches/patch-ah
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ah,v 1.3 2006/01/28 02:03:58 rillig Exp $
-
-MIPSpro does not like non-constant initializers.
-
---- lib/argp-help.c.orig 2004-10-04 11:36:16.000000000 +0200
-+++ lib/argp-help.c 2006-01-28 02:58:23.000000000 +0100
-@@ -1055,7 +1055,13 @@ hol_entry_help (struct hol_entry *entry,
- int old_wm = __argp_fmtstream_wmargin (stream);
- /* PEST is a state block holding some of our variables that we'd like to
- share with helper functions. */
-- struct pentry_state pest = { entry, stream, hhstate, 1, state };
-+ struct pentry_state pest;
-+
-+ pest.entry = entry;
-+ pest.stream = stream;
-+ pest.hhstate = hhstate;
-+ pest.first = 1;
-+ pest.state = state;
-
- if (! odoc (real))
- for (opt = real, num = entry->num; num > 0; opt++, num--)