From d96354f58e35786d2400934b7e9dca938e319e7e Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 14 Apr 2021 21:58:17 +0200 Subject: Ports: Remove obsolete patch for the oksh port The patch is not necessary anymore and breaks the build now that LibC has isblank. --- Ports/oksh/patches/implement_isblank.patch | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Ports/oksh/patches/implement_isblank.patch (limited to 'Ports/oksh') diff --git a/Ports/oksh/patches/implement_isblank.patch b/Ports/oksh/patches/implement_isblank.patch deleted file mode 100644 index 48c0a5b652..0000000000 --- a/Ports/oksh/patches/implement_isblank.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/charclass.h b/charclass.h -index 5edb2c1..af00709 100644 ---- a/charclass.h -+++ b/charclass.h -@@ -7,6 +7,11 @@ - /* - * POSIX character class support for fnmatch() and glob(). - */ -+int -+isblank(int c) -+{ -+ return (c == ' ' || c == '\t'); -+} - static struct cclass { - const char *name; - int (*isctype)(int); -- cgit v1.2.3