aboutsummaryrefslogtreecommitdiff
path: root/math/gnumeric/files
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-04-11 05:13:48 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-04-11 05:13:48 +0000
commit6363d49ea8ad70dbd0b434670e1e6e75f6012b0e (patch)
treeb9a804a2f96637463f94207ad99674840fbc9fd5 /math/gnumeric/files
parent4ee8af558b0a5e822e38dc1b4bf08f086082c3ac (diff)
downloadports-6363d49ea8ad70dbd0b434670e1e6e75f6012b0e.tar.gz
ports-6363d49ea8ad70dbd0b434670e1e6e75f6012b0e.zip
Notes
Diffstat (limited to 'math/gnumeric/files')
-rw-r--r--math/gnumeric/files/patch-src_xml-io.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/math/gnumeric/files/patch-src_xml-io.c b/math/gnumeric/files/patch-src_xml-io.c
deleted file mode 100644
index 23d57e643117..000000000000
--- a/math/gnumeric/files/patch-src_xml-io.c
+++ /dev/null
@@ -1,36 +0,0 @@
---- src/xml-io.c.orig Thu Jan 9 13:44:58 2003
-+++ src/xml-io.c Thu Jan 9 13:46:41 2003
-@@ -67,7 +67,7 @@
-
- /* FIXME - tune the values below */
- /* libxml1 parser bug breaks multibyte characters on buffer margins */
--#define XML_INPUT_BUFFER_SIZE 1024*1024
-+#define XML_INPUT_BUFFER_SIZE (10*1024*1024)
- #define N_ELEMENTS_BETWEEN_UPDATES 20
-
- /* ------------------------------------------------------------------------- */
-@@ -3350,7 +3350,7 @@
- struct stat sbuf;
- gint file_size;
- ErrorInfo *open_error;
-- gchar buffer[XML_INPUT_BUFFER_SIZE];
-+ gchar *buffer;
- gint bytes;
- xmlParserCtxtPtr pctxt;
- xmlDocPtr res;
-@@ -3387,6 +3387,7 @@
- io_progress_message (context, _("Reading file..."));
- io_progress_range_push (context, 0.0, 0.5);
- value_io_progress_set (context, file_size, 0);
-+ buffer = g_new (char, XML_INPUT_BUFFER_SIZE);
- bytes = gzread (f, buffer, 4);
- pctxt = xmlCreatePushParserCtxt (NULL, NULL, buffer, bytes, filename);
-
-@@ -3395,6 +3396,7 @@
- value_io_progress_update (context, lseek (fd, 0, SEEK_CUR));
- }
- xmlParseChunk (pctxt, buffer, 0, 1);
-+ g_free (buffer);
-
- res = pctxt->myDoc;
- xmlFreeParserCtxt (pctxt);