summaryrefslogtreecommitdiff
path: root/Ports/diffutils/patches
diff options
context:
space:
mode:
authorEWouters <6179932+EWouters@users.noreply.github.com>2022-04-01 02:13:22 +0200
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-04-11 19:43:56 -0700
commit8828b038f58a0f23a2b12b69b7c4c33fdb17c579 (patch)
treea29cd3b606119d55a13016f75d0df283c225d343 /Ports/diffutils/patches
parent8a84a0385045632d8a3722798d8d25e4f19eda45 (diff)
downloadserenity-8828b038f58a0f23a2b12b69b7c4c33fdb17c579.zip
Ports/diffutils: Update diffutils to version 3.8
The fnmatch patch that was added in 6de6dff is reverted because it is not clear why it is necessary, as discussed in #9206. This also removes diffutils from the list of ports missing descriptions as it no longer has any patches.
Diffstat (limited to 'Ports/diffutils/patches')
-rw-r--r--Ports/diffutils/patches/fnmatch.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/Ports/diffutils/patches/fnmatch.patch b/Ports/diffutils/patches/fnmatch.patch
deleted file mode 100644
index 711781a318..0000000000
--- a/Ports/diffutils/patches/fnmatch.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Naur gettext-0.21/gettext-tools/gnulib-lib/fnmatch_loop.c gettext-0.21.serenity/gettext-tools/gnulib-lib/fnmatch_loop.c
---- diffutils-3.7/lib/fnmatch_loop.c 2020-06-26 21:57:10.000000000 +0200
-+++ diffutils-3.7.serenity/lib/fnmatch_loop.c 2021-05-08 05:06:59.944736766 +0200
-@@ -19,6 +19,10 @@
-
- /* Match STRING against the file name pattern PATTERN, returning zero if
- it matches, nonzero if not. */
-+#ifdef __serenity__
-+# define FNM_EXTMATCH 9000
-+#endif
-+
- static int EXT (INT opt, const CHAR *pattern, const CHAR *string,
- const CHAR *string_end, bool no_leading_period, int flags)
- internal_function;