summaryrefslogtreecommitdiff
path: root/system/ksh-openbsd/patches/linux/charclass_h.diff
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2012-09-25 10:55:37 -0500
committerRobby Workman <rworkman@slackbuilds.org>2012-09-28 21:36:03 -0500
commitcb344202915f686246438af970b0de59a8e93665 (patch)
tree0867b0be50e8037e81de6b163d331f2d52ccbadd /system/ksh-openbsd/patches/linux/charclass_h.diff
parent843acef4c6251d39e6b05293362d9e9496200776 (diff)
downloadslackbuilds-cb344202915f686246438af970b0de59a8e93665.tar.gz
system/ksh-openbsd: Removed (build failure)
The checksums on the downloaded source don't match either, so probably the tarball got updated without corresponding updates to the build script. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/ksh-openbsd/patches/linux/charclass_h.diff')
-rw-r--r--system/ksh-openbsd/patches/linux/charclass_h.diff36
1 files changed, 0 insertions, 36 deletions
diff --git a/system/ksh-openbsd/patches/linux/charclass_h.diff b/system/ksh-openbsd/patches/linux/charclass_h.diff
deleted file mode 100644
index 05e7957075..0000000000
--- a/system/ksh-openbsd/patches/linux/charclass_h.diff
+++ /dev/null
@@ -1,36 +0,0 @@
---- ksh-openbsd_cvs/charclass.h 1970-01-01 01:00:00.000000000 +0100
-+++ ksh-openbsd_cvs.new/charclass.h 2010-04-01 21:01:24.132137763 +0200
-@@ -0,0 +1,33 @@
-+/*
-+ * Public domain, 2008, Todd C. Miller <Todd.Miller@courtesan.com>
-+ *
-+ * $OpenBSD: charclass.h,v 1.1 2008/10/01 23:04:13 millert Exp $
-+ */
-+
-+#include <ctype.h>
-+
-+#define isblank(c) __isctype((c), _ISblank)
-+
-+/*
-+ * POSIX character class support for fnmatch() and glob().
-+ */
-+static struct cclass {
-+ const char *name;
-+ int (*isctype)(int);
-+} cclasses[] = {
-+ { "alnum", isalnum },
-+ { "alpha", isalpha },
-+// { "blank", isblank },
-+ { "cntrl", iscntrl },
-+ { "digit", isdigit },
-+ { "graph", isgraph },
-+ { "lower", islower },
-+ { "print", isprint },
-+ { "punct", ispunct },
-+ { "space", isspace },
-+ { "upper", isupper },
-+ { "xdigit", isxdigit },
-+ { NULL, NULL }
-+};
-+
-+#define NCCLASSES (sizeof(cclasses) / sizeof(cclasses[0]) - 1)