summaryrefslogtreecommitdiff
path: root/textproc/xls2xml/files
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/xls2xml/files')
-rw-r--r--textproc/xls2xml/files/patch-aa12
-rw-r--r--textproc/xls2xml/files/patch-ab11
-rw-r--r--textproc/xls2xml/files/patch-ac11
3 files changed, 34 insertions, 0 deletions
diff --git a/textproc/xls2xml/files/patch-aa b/textproc/xls2xml/files/patch-aa
new file mode 100644
index 000000000000..94028713d8b1
--- /dev/null
+++ b/textproc/xls2xml/files/patch-aa
@@ -0,0 +1,12 @@
+--- rec/p.h.orig Sun Mar 28 01:07:00 1999
++++ rec/p.h Thu Nov 4 14:45:37 1999
+@@ -20,6 +20,9 @@
+ Roberto Arturo Tena Sanchez <arturo@directmail.org>
+ */
+
++#include <stdlib.h>
++#include "../pcommon.h"
++
+ int p06 (void);
+ int p09 (void);
+ int p0A (void);
diff --git a/textproc/xls2xml/files/patch-ab b/textproc/xls2xml/files/patch-ab
new file mode 100644
index 000000000000..ff2d0a798368
--- /dev/null
+++ b/textproc/xls2xml/files/patch-ab
@@ -0,0 +1,11 @@
+--- formula.c.orig Thu Nov 4 15:01:23 1999
++++ formula.c Thu Nov 4 15:01:27 1999
+@@ -642,7 +642,7 @@
+ new_record = malloc (sizeof (stack_record));
+ test (new_record != NULL, 10);
+ if (data == NULL)
+- new_record->data == NULL;
++ new_record->data = NULL;
+ else
+ {
+ new_record->data = data;
diff --git a/textproc/xls2xml/files/patch-ac b/textproc/xls2xml/files/patch-ac
new file mode 100644
index 000000000000..ab8a933d3960
--- /dev/null
+++ b/textproc/xls2xml/files/patch-ac
@@ -0,0 +1,11 @@
+--- formula.h.orig Thu Nov 4 14:52:58 1999
++++ formula.h Thu Nov 4 14:56:07 1999
+@@ -25,6 +25,8 @@
+
+ #include <cole1compat.h>
+ #include <stdlib.h> /* FIXME: TEMP to call calloc */
++#include "xmlunicode.h"
++#include "pcommon.h"
+
+ int fil_parsed_formula2str (char ** result_string, U8 * parsed_expression,
+ int * volatile_function);