diff options
author | knu <knu@FreeBSD.org> | 2003-08-10 02:20:37 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2003-08-10 02:20:37 +0800 |
commit | d7121e85ecf8cc593107e1f3bf3c32f32a5b2fac (patch) | |
tree | ff2f897066309cb0ae4062fb63898747a1639f5e /graphics | |
parent | 828f863e23b3d1e135b12c7e904d5b7ac6a58ad6 (diff) | |
download | freebsd-ports-gnome-d7121e85ecf8cc593107e1f3bf3c32f32a5b2fac.tar.gz freebsd-ports-gnome-d7121e85ecf8cc593107e1f3bf3c32f32a5b2fac.tar.zst freebsd-ports-gnome-d7121e85ecf8cc593107e1f3bf3c32f32a5b2fac.zip |
Update the Ruby-GNOME suite to 0.34.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ruby-libart/files/patch-rbart_canvas.c | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/graphics/ruby-libart/files/patch-rbart_canvas.c b/graphics/ruby-libart/files/patch-rbart_canvas.c deleted file mode 100644 index 52c118d4f2ff..000000000000 --- a/graphics/ruby-libart/files/patch-rbart_canvas.c +++ /dev/null @@ -1,53 +0,0 @@ ---- src/rbart_canvas.c.orig Mon Jan 20 01:04:03 2003 -+++ src/rbart_canvas.c Fri Mar 21 20:06:11 2003 -@@ -156,6 +156,7 @@ - return r_self; - } - -+#if 0 - static void - user_init_destination(cinfo) - j_compress_ptr cinfo; -@@ -188,6 +189,42 @@ - r_buffer = (VALUE) cinfo->client_data; - RSTRING(r_buffer)->len = RSTRING(r_buffer)->aux.capa - cinfo->dest->free_in_buffer; - RSTRING(r_buffer)->ptr[RSTRING(r_buffer)->len] = '\0'; -+} -+#endif -+ -+struct client_data { -+ VALUE r_result; -+ JOCTET buffer[BUFSIZ]; -+}; -+ -+static void -+user_init_destination(cinfo) -+ j_compress_ptr cinfo; -+{ -+ struct client_data *cd; -+ cd = (struct client_data *) cinfo->client_data; -+ cinfo->dest->next_output_byte = cd->buffer; -+ cinfo->dest->free_in_buffer = BUFSIZ; -+} -+ -+static boolean -+user_empty_output_buffer(cinfo) -+ j_compress_ptr cinfo; -+{ -+ struct client_data *cd; -+ cd = (struct client_data *) cinfo->client_data; -+ rb_str_cat(cd->r_result, cd->buffer, BUFSIZ); -+ cinfo->dest->next_output_byte = cd->buffer; -+ cinfo->dest->free_in_buffer = BUFSIZ; -+} -+ -+static void -+user_term_destination(cinfo) -+ j_compress_ptr cinfo; -+{ -+ struct client_data *cd; -+ cd = (struct client_data *) cinfo->client_data; -+ rb_str_cat(cd->r_result, cd->buffer, cinfo->dest->next_output_byte - cd->buffer); - } - - static VALUE |