From 8489b4ac928e67c965c6f3113ec60870033751d5 Mon Sep 17 00:00:00 2001 From: Kurt Jaeger Date: Sun, 8 May 2016 17:50:04 +0000 Subject: 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) --- lang/rexx-regutil/files/patch-regstem.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lang/rexx-regutil/files/patch-regstem.c (limited to 'lang/rexx-regutil/files/patch-regstem.c') 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; + } -- cgit v1.2.3