summaryrefslogtreecommitdiff
path: root/textproc/ruby-itex2MML/patches/patch-itex2MML.y
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/ruby-itex2MML/patches/patch-itex2MML.y')
-rw-r--r--textproc/ruby-itex2MML/patches/patch-itex2MML.y24
1 files changed, 0 insertions, 24 deletions
diff --git a/textproc/ruby-itex2MML/patches/patch-itex2MML.y b/textproc/ruby-itex2MML/patches/patch-itex2MML.y
deleted file mode 100644
index 7df90e7c790..00000000000
--- a/textproc/ruby-itex2MML/patches/patch-itex2MML.y
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-itex2MML.y,v 1.1 2013/09/11 15:14:00 taca Exp $
-
-Fix build with bison-3.0
-
---- itex2MML.y.orig 2010-10-03 07:11:13.000000000 +0000
-+++ itex2MML.y
-@@ -2,6 +2,8 @@
- * itex2MML.y last modified 10/2/2010
- */
-
-+%parse-param {char **ret_str}
-+
- %{
- #include <stdio.h>
- #include <string.h>
-@@ -27,7 +29,7 @@
-
- void (*itex2MML_error) (const char * msg) = itex2MML_default_error;
-
-- static void yyerror (char * s)
-+ static void yyerror (char **ret_str, char * s)
- {
- char * msg = itex2MML_copy3 (s, " at token ", yytext);
- if (itex2MML_error)