summaryrefslogtreecommitdiff
path: root/www/ap-ruby/patches
diff options
context:
space:
mode:
authortaca <taca>2004-11-28 15:43:32 +0000
committertaca <taca>2004-11-28 15:43:32 +0000
commitc5737adeb8fdd422bb72b15256a1a3734c09ddba (patch)
treedbc830c131460adb08eef0aa0acaacc254a2959f /www/ap-ruby/patches
parent7655a5386a7d84683c4811e981a74c792fbeac91 (diff)
downloadpkgsrc-c5737adeb8fdd422bb72b15256a1a3734c09ddba.tar.gz
Update ap-ruby package to 1.2.4.
Changes are huge, please see ChangeLog file.
Diffstat (limited to 'www/ap-ruby/patches')
-rw-r--r--www/ap-ruby/patches/patch-ac13
1 files changed, 13 insertions, 0 deletions
diff --git a/www/ap-ruby/patches/patch-ac b/www/ap-ruby/patches/patch-ac
new file mode 100644
index 00000000000..9ce96379b8b
--- /dev/null
+++ b/www/ap-ruby/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.1 2004/11/28 15:43:32 taca Exp $
+
+--- apache_request.c.orig 2004-09-24 03:43:18.000000000 +0900
++++ apache_request.c
+@@ -230,7 +230,7 @@ static unsigned int utf8_convert(char *s
+ x = x * 16 + str[i] - '0';
+ }
+ else {
+- str[i] = tolower( str[i] );
++ str[i] = tolower((unsigned int)str[i] );
+ x = x * 16 + str[i] - 'a' + 10;
+ }
+ }