summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2015-08-24 07:00:05 +0200
committerJeroen Roovers <jer@gentoo.org>2015-08-24 07:02:58 +0200
commita21a083d20aca7386473ae046c5e61dcaadee9db (patch)
treedf4940735c3e0a171ff6d346d4913eb61bb11388 /dev-ruby/json/files
parentdev-ruby/minitest: Stable for HPPA PPC64 (bug #518094). (diff)
downloadgentoo-a21a083d20aca7386473ae046c5e61dcaadee9db.tar.gz
gentoo-a21a083d20aca7386473ae046c5e61dcaadee9db.tar.bz2
gentoo-a21a083d20aca7386473ae046c5e61dcaadee9db.zip
dev-ruby/json: Stable for HPPA PPC64 (bug #518094).
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-ruby/json/files')
-rw-r--r--dev-ruby/json/files/json-1.8.1-ruby22.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-ruby/json/files/json-1.8.1-ruby22.patch b/dev-ruby/json/files/json-1.8.1-ruby22.patch
deleted file mode 100644
index a2d55c44ed57..000000000000
--- a/dev-ruby/json/files/json-1.8.1-ruby22.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Fix compilation issue with ruby22.
-
-See https://github.com/flori/json/issues/229
-
-Taken from the ruby-core changes.
-
---- ext/json/ext/fbuffer/fbuffer.h.orig 2014-12-27 21:27:31.701991610 +0100
-+++ ext/json/ext/fbuffer/fbuffer.h 2014-12-27 21:28:11.252956858 +0100
-@@ -172,7 +172,7 @@
-
- static VALUE fbuffer_to_s(FBuffer *fb)
- {
-- VALUE result = rb_str_new(FBUFFER_PAIR(fb));
-+ VALUE result = rb_str_new(FBUFFER_PTR(fb), FBUFFER_LEN(fb));
- fbuffer_free(fb);
- FORCE_UTF8(result);
- return result;