summaryrefslogtreecommitdiff
path: root/lang/rexx-regutil/files/patch-regstem.c
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2016-05-08 17:50:04 +0000
committerKurt Jaeger <pi@FreeBSD.org>2016-05-08 17:50:04 +0000
commit8489b4ac928e67c965c6f3113ec60870033751d5 (patch)
tree0428f7b1c0494fa6753c9516c8f3b5d7be57757c /lang/rexx-regutil/files/patch-regstem.c
parent- Update to 1.2.2. (diff)
lang/rexx-regutil: several patches
- additional MASTER_SITE (there was only one) - tidied Makefile considerably - fixed failure to build under different PREFIX - added DOC option - added EXAMPLES option, and now can have examples (there were none before) - eliminated numerous compilation warnings - REMOVED pkg-plist (only two files in it) - REMOVED pkg-message (now redundant) - ADDED new patches in files/ PR: 209379 Submitted by: bob@eager.cx (maintainer)
Diffstat (limited to 'lang/rexx-regutil/files/patch-regstem.c')
-rw-r--r--lang/rexx-regutil/files/patch-regstem.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/rexx-regutil/files/patch-regstem.c b/lang/rexx-regutil/files/patch-regstem.c
new file mode 100644
index 000000000000..e9afff180cf6
--- /dev/null
+++ b/lang/rexx-regutil/files/patch-regstem.c
@@ -0,0 +1,11 @@
+--- regstem.c.orig 2004-06-15 19:15:06 UTC
++++ regstem.c
+@@ -53,7 +53,7 @@ static int rxstrcasecmp(const PRXSTRING
+ {
+ register int len = min(l->strlength, r->strlength),
+ d = l->strlength - r->strlength,
+- c = casecmp(l->strptr, r->strptr, len);
++ c = casecmp((unsigned char *) l->strptr, (unsigned char *) r->strptr, len);
+
+ return (len && c) ? c : d;
+ }