diff options
author | Juergen Daubert <jue@jue.li> | 2022-05-28 11:11:16 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2022-05-28 11:11:16 +0200 |
commit | 9075b702a910b06fe168ff1e0d6bff0764c4bcb5 (patch) | |
tree | 1c87c35b7617c9e17bf2669c9f5504458c1eb1a0 /man-db | |
parent | 39658a998846b8b7b25ffe62f702370a1b1504cd (diff) | |
download | core-9075b702a910b06fe168ff1e0d6bff0764c4bcb5.tar.gz core-9075b702a910b06fe168ff1e0d6bff0764c4bcb5.tar.xz |
man-db: remove unused patch
Diffstat (limited to 'man-db')
-rw-r--r-- | man-db/man-db-2.10.0-fix-build-clang.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/man-db/man-db-2.10.0-fix-build-clang.patch b/man-db/man-db-2.10.0-fix-build-clang.patch deleted file mode 100644 index 28963010..00000000 --- a/man-db/man-db-2.10.0-fix-build-clang.patch +++ /dev/null @@ -1,44 +0,0 @@ -https://gitlab.com/cjwatson/man-db/-/commit/f4f94402834f20b9da730aeca5daa465be38efdf -https://gitlab.com/cjwatson/man-db/-/issues/2 - -From f4f94402834f20b9da730aeca5daa465be38efdf Mon Sep 17 00:00:00 2001 -From: Colin Watson <cjwatson@debian.org> -Date: Sun, 6 Feb 2022 12:37:01 +0000 -Subject: [PATCH] Revert "Reduce indentation depth using C99" - -This reverts commit c4d20840f3487588c4a0da4397b1acb6dc83a1e5. Even in -C99, a declaration isn't valid immediately after a label; this didn't -become valid until C2x, although gcc allows it as an extension. - -Fixes https://gitlab.com/cjwatson/man-db/-/issues/2. - -* src/man.c (parse_opt): Restore enclosing block for OPT_WARNINGS. ---- a/src/man.c -+++ b/src/man.c -@@ -383,15 +383,18 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) - - case OPT_WARNINGS: - #ifdef NROFF_WARNINGS -- char *s = xstrdup (arg ? arg : default_roff_warnings); -- const char *warning; -+ { -+ char *s = xstrdup -+ (arg ? arg : default_roff_warnings); -+ const char *warning; - -- for (warning = strtok (s, ","); warning; -- warning = strtok (NULL, ",")) -- gl_list_add_last (roff_warnings, -- xstrdup (warning)); -+ for (warning = strtok (s, ","); warning; -+ warning = strtok (NULL, ",")) -+ gl_list_add_last (roff_warnings, -+ xstrdup (warning)); - -- free (s); -+ free (s); -+ } - #endif /* NROFF_WARNINGS */ - return 0; - -GitLab |